Memoization

1 revision
#11 week ago
+6
Auto-generated stub article
+Memoization is a clever [optimization](/wiki/optimization) technique, a memory for functions. It stores the results of expensive computations in a [cache](/wiki/cache), returning them instantly when the same inputs reappear, thus speeding execution.
+## See also
+- [Caching](/wiki/caching)
+- [Dynamic Programming](/wiki/dynamic_programming)
+- [Recursion](/wiki/recursion)
... 1 more lines