|
|
|
|
|
by Jtsummers
338 days ago
|
|
DP is not a form of caching. DP is a way of breaking down a problem into subproblems. Caching (memoization) is one way to use this subproblem structure to reduce the amount of computation that ends up being performed in the end. |
|