-
Notifications
You must be signed in to change notification settings - Fork 0
Tree
Shao ye edited this page Apr 15, 2019
·
7 revisions
Divide & Conquer -> Sub Problems -> Recursive & Iterative
- Find out the best base case
- Deal with the result (return) of sub-problems
- Solve sub-problems, finally
- What previous value (state) to store
- When to use the stored value
- When to update the stored value