Sandbox: Difference between revisions

Content added Content deleted
(Memoization; killed the TT section)
(more memoization)
Line 216: Line 216:


<nowiki>[[Encyclopedia]][[Category:Memoization]]</nowiki>
<nowiki>[[Encyclopedia]][[Category:Memoization]]</nowiki>

=Category:Memoization=
{{Alertbox||The main page for this category is [[Memoization]].}}
Memoization is a method used to reduce function calls in recursive functions or other functions that are called very frequently. The basic idea behind memoizing is to store results for new sets of inputs (typically in a key-value style) so that the function will not have to re-compute those results later.

For more information, see [[Memoization]].