I think dynamic programming is subset of memoization. Is it right?
In dynamic programming you solve the problem "bottom up", i.e., by solving all related sub-problems first, typically by filling up an n-dimensional table. Based on the results in the table, the solution to the "top" / original problem is then computed. In memoization you typically solve the problem lazily while maintaining a map of already solved sub problems. You do it "top down" in the sense that you solve the "top" problem first (which typically recurses down to solve the sub-problems). A good slide from here:
I wouldn't say so. If you solve the problem by for instance filling up some n-dimensional table with answers for sub-problems (bottom up), you're not doing anything "lazily"/"on-demand" or "top down" which is somewhat central in memoization. |
||||
|
|
|
From wikipedia: "In computing, memoization is an optimization technique used primarily to speed up computer programs by having function calls avoid repeating the calculation of results for previously-processed inputs." "In mathematics and computer science, dynamic programming is a method for solving complex problems by breaking them down into simpler subproblems." When breaking a problem into smaller/simpler subproblems, we often encounter the same subproblem more then once - so we use Memoization to save results of previous calculations so we don't need to repeat them. Dynamic programming often encounters situations where it makes since to use memoization but You can use either technique without necessarily using the other. |
||||