Category:Memoization: Difference between revisions

m
A little more info, organization
(Short writeup on memoization)
 
m (A little more info, organization)
Line 1:
Memoization is a method used to reduce function calls in recursive functions or other functions that are called very frequently. FunctionsThe whichbasic canidea bebehind memoizedmemoizing areis onesto thatstore give the same answerresults for anew setsets of inputs each(typically timein thosea inputskey-value arestyle) used.so [[Fibonaccithat sequence|Fibonaccithe numberfunction functions]]will arenot often memoizedhave to reducere-computer theirthose callresults trees and calculation times over timelater. The basic operation of a memoized function would look something like this:
 
Functions which can be memoized are ones that give the same answer for a set of inputs each time those inputs are used. [[Fibonacci sequence|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:
<pre>function a with inputs
if inputs have been seen before
Line 8 ⟶ 10:
return that answer
end function</pre>
Some programs may negate the condition in the "if" and swap the operations.
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.
 
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.
Anonymous user