Skip to content

Commit 6fc9219

Browse files
committed
Dynamic programming notes
1 parent 534256d commit 6fc9219

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

7-case-studies/DynamicProgramming.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
### DP
2+
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

Comments
 (0)