What is memoization?
2 May 2022 (Updated 2 May 2022)
On this page
Memorization is an optimization technique in programming in which you store the results of expensive function calls and return cached results when functions are re-invoked with the same inputs. This way, you avoid redoing expensive computations.
Memoization only works for pure functions that always return the same result when given the same input.
Here’s a pseudocode example of how a factorial function can be memoized:
Non-memoized version
Memoized version
Sources
Tagged:
Computing
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment