Monday, March 26, 2012

Memoization

Memoization is a way to make code run faster by saving
previously computed results. Instead of needing to recompute the value of an
expression, a memoized computation first looks for the value in a cache of pre-
computed values. (caching)

No comments:

Post a Comment