Recursion is a technique in which a problem is solved by itself; it‘s a technique to solve most Divide & Conquer problems.
Differences between Divide & Conquer problem and Dynamic Programming problem:
Sub-problems of DP usually have some relations, while Divide & Conquer is not.
Advantages & Disadvantages of Recursion
原文:https://www.cnblogs.com/ireneyanglan/p/11371286.html