Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I think dynamic programming is subset of memoization. Is it right?

share|improve this question

2 Answers

up vote 20 down vote accepted

What is difference between memoization and dynamic programming?

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:

  • If all subproblems must be solved at least once, a bottom-up dynamic-programming algorithm usually outperforms a top-down memoized algorithm by a constant factor
    • No overhead for recursion and less overhead for maintaining table
    • There are some problems for which the regular pattern of table accesses in the dynamic-programming algorithm can be exploited to reduce the time or space requirements even further
  • If some subproblems in the subproblem space need not be solved at all, the memoized solution has the advantage of solving only those subproblems that are definitely required

 

I think dynamic programming is subset of memoization. Is it right?

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.

share|improve this answer

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.

share|improve this answer
   
That doesn't really answer the question, does it? – aioobe May 31 '11 at 8:47
OP edited the question after i posted the answer. Original question asked whats the difference between the two. – yurib May 31 '11 at 8:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.