You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Break problem down to base case. Smallest computation. Like computing values for one object in the knapsack case.
3
+
4
+
Use a lookup table that stores solutions to subproblems. In the knapsack case, we stored the weights and values in a table.
5
+
6
+
Most DP problems are like so:
7
+
Solve problem in trivial case and collect them in that table.
8
+
9
+
### Memoization
10
+
Memoization: storing precomputed values.
11
+
12
+
Normal computations might require repeated computations of the same thing if they are needed "on the way" to the solution through different branches of computation. Memoized computations will let you pull a previously-calculated value out of a table and use that to calculate the next piece.
0 commit comments