Category:Memoization

From Rosetta Code
Revision as of 00:59, 13 February 2011 by rosettacode>Mwn3d (Short writeup on memoization)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Memoization is a method used to reduce function calls in recursive functions or other functions that are called very frequently. Functions which can be memoized are ones that give the same answer for a set of inputs each time those inputs are used. Fibonacci number functions are often memoized to reduce their call trees and calculation times over time. The basic operation of a memoized function would look something like this:

function a with inputs
   if inputs have been seen before
      return a stored answer from when they were seen
   else
      compute the answer for inputs
      store that answer
      return that answer
end function

Some programs may negate the condition in the "if" and swap the operations. The overall benefit is that a function frequents called with the same set of inputs can save time by remembering the answer after computing it once -- sacrificing memory for computation time. In systems where memory (or storage depending on the implementation of storing old results) comes at a premium, memoization is not a good option. As long as memory is available and input sets are used repeatedly, memoization can save lots of computation time.