From e4d271510565bb4542d1e4cd09835811fbdb4daf Mon Sep 17 00:00:00 2001 From: Naba7 <31562743+Naba7@users.noreply.github.com> Date: Tue, 30 Oct 2018 04:28:06 +0530 Subject: [PATCH] index1 (#24512) I thought of adding the links so that students may know why they should use dynamic programming --- guide/english/computer-science/dynamic-programming/index.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/guide/english/computer-science/dynamic-programming/index.md b/guide/english/computer-science/dynamic-programming/index.md index 1b7fe0a8264..a38eb53da45 100644 --- a/guide/english/computer-science/dynamic-programming/index.md +++ b/guide/english/computer-science/dynamic-programming/index.md @@ -49,4 +49,5 @@ Caching computed solutions in a lookup table, and query it before go recursion w #### More Information: [What is dynamic programming on StackOverflow](https://stackoverflow.com/questions/1065433/what-is-dynamic-programming") -[Difference between memoization and DP on StackOverflow](https://stackoverflow.com/questions/6184869/what-is-the-difference-between-memoization-and-dynamic-programming) \ No newline at end of file +[Difference between memoization and DP on StackOverflow](https://stackoverflow.com/questions/6184869/what-is-the-difference-between-memoization-and-dynamic-programming) +[Why DP rather than function calling or looping](https://www.quora.com/What-is-the-difference-between-dynamic-programming-and-recursion)