302 B
302 B
""""Dynamic Programming""""
Take a large problem Break it up Solve the pieces /lecture
Definitions
- Recursive dynamic programming
- Memoization a.k.a. top-down approach
- Go from big problems and build downward
- Tabulation
- Bottom up approach
- Go from little problems and build up