Recursive Algorithms often solve problems by the Divide & Conquer paradigm, which involves three stages: divide, conquer and combine.
- Divide the problem into 2 or more smaller subproblems, whose solutions are strongly related to the solution of the original problem.
- Conquer by calling the recursive algorithm on each subproblem.
- Combine together the subproblem solutions to form the solution to the original problem.
Read full article from . . . About Mathematical Induction
No comments:
Post a Comment