How do I write a generic memoize function? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T23:13:41Zhttp://stackoverflow.com/feeds/question/129877http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/129877/how-do-i-write-a-generic-memoize-function3How do I write a generic memoize function?Jon Ericson2008-09-24T20:48:41Z2009-10-29T11:56:22Z
<p>I'm writing a function to find <a href="http://projecteuler.net/index.php?section=problems&id=12" rel="nofollow">triangle numbers</a> and the natural way to write it is recursively:</p>
<pre><code>function triangle (x)
if x == 0 then return 0 end
return x+triangle(x-1)
end
</code></pre>
<p>But attempting to calculate the first 100,000 triangle numbers fails with a stack overflow after a while. This is an ideal function to <a href="http://perl.plover.com/Memoize/" rel="nofollow">memoize</a>, but I want a solution that will memoize any function I pass to it.</p>
http://stackoverflow.com/questions/129877/how-do-i-write-a-generic-memoize-function/129881#1298813Answer by Jon Ericson for How do I write a generic memoize function?Jon Ericson2008-09-24T20:49:08Z2008-09-24T20:49:08Z<pre><code>function memoize (f)
local cache = {}
return function (x)
if cache[x] then
return cache[x]
else
local y = f(x)
cache[x] = y
return y
end
end
end
triangle = memoize(triangle);
</code></pre>
<p>Note that to avoid a stack overflow, triangle would still need to be seeded.</p>
http://stackoverflow.com/questions/129877/how-do-i-write-a-generic-memoize-function/129903#1299030Answer by Romain Verdier for How do I write a generic memoize function?Romain Verdier2008-09-24T20:53:01Z2008-09-24T20:53:01Z<p>Here is a generic C# 3.0 implementation, if it could help :</p>
<pre><code>public static class Memoization
{
public static Func<T, TResult> Memoize<T, TResult>(this Func<T, TResult> function)
{
var cache = new Dictionary<T, TResult>();
var nullCache = default(TResult);
var isNullCacheSet = false;
return parameter =>
{
TResult value;
if (parameter == null && isNullCacheSet)
{
return nullCache;
}
if (parameter == null)
{
nullCache = function(parameter);
isNullCacheSet = true;
return nullCache;
}
if (cache.TryGetValue(parameter, out value))
{
return value;
}
value = function(parameter);
cache.Add(parameter, value);
return value;
};
}
}
</code></pre>
<p>(Quoted from a <a href="http://codingly.com/2008/05/02/optimisation-des-invocations-dynamiques-de-methodes-en-c/" rel="nofollow">french blog article</a>)</p>
http://stackoverflow.com/questions/129877/how-do-i-write-a-generic-memoize-function/129910#1299102Answer by Daniel Spiewak for How do I write a generic memoize function?Daniel Spiewak2008-09-24T20:54:17Z2008-09-24T22:55:57Z<p>In Scala (untested):</p>
<pre><code>def memoize[A, B](f: (A)=>B) = {
var cache = Map[A, B]()
{ x: A =>
if (cache contains x) cache(x) else {
val back = f(x)
cache += (x -> back)
back
}
}
}
</code></pre>
<p>Note that this only works for functions of arity 1, but with currying you could make it work. The more subtle problem is that <code>memoize(f) != memoize(f)</code> for any function <code>f</code>. One very sneaky way to fix this would be something like the following:</p>
<pre><code>val correctMem = memoize(memoize _)
</code></pre>
<p>I don't think that this will compile, but it does illustrate the idea.</p>
http://stackoverflow.com/questions/129877/how-do-i-write-a-generic-memoize-function/129924#1299244Answer by Luke H for How do I write a generic memoize function?Luke H2008-09-24T20:56:50Z2008-09-24T21:38:51Z<p>You're also asking the wrong question for your original problem ;)</p>
<p>This is a better way for that case:</p>
<p>triangle(n) = n * (n - 1) / 2</p>
<p>Furthermore, supposing the formula didn't have such a neat solution, memoisation would still be a poor approach here. You'd be better off just writing a simple loop in this case. See <a href="http://stackoverflow.com/questions/129877/how-do-i-write-a-generic-memoize-function#130006">this answer</a> for a fuller discussion.</p>
http://stackoverflow.com/questions/129877/how-do-i-write-a-generic-memoize-function/130006#1300063Answer by Turbulent Intellect for How do I write a generic memoize function?Turbulent Intellect2008-09-24T21:10:04Z2008-09-30T15:56:09Z<p><strong>Update</strong>: Commenters have pointed out that memoization is a good way to optimize recursion. Admittedly, I hadn't considered this before, since I generally work in a language (C#) where generalized memoization isn't so trivial to build. Take the post below with that grain of salt in mind.</p>
<p>I think <a href="http://stackoverflow.com/questions/129877/how-do-i-write-a-generic-memoize-function#129924">Luke likely has the most appropriate solution</a> to this problem, but memoization is not generally the solution to any issue of stack overflow.</p>
<p>Stack overflow usually is caused by recursion going deeper than the platform can handle. Languages sometimes support "<a href="http://en.wikipedia.org/wiki/Tail_recursion" rel="nofollow">tail recursion</a>", which re-uses the context of the current call, rather than creating a new context for the recursive call. But a lot of mainstream languages/platforms don't support this. C# has no inherent support for tail-recursion, for example. The 64-bit version of the .NET JITter can apply it as an optimization at the IL level, which is all but useless if you need to support 32-bit platforms.</p>
<p>If your language doesn't support tail recursion, your best option for avoiding stack overflows is either to convert to an explicit loop (much less elegant, but sometimes necessary), or find a non-iterative algorithm such as Luke provided for this problem.</p>
http://stackoverflow.com/questions/129877/how-do-i-write-a-generic-memoize-function/130445#1304452Answer by Steve Jessop for How do I write a generic memoize function?Steve Jessop2008-09-24T22:54:22Z2008-09-24T22:54:22Z<p>There's a scary-looking C++ preprocessor and library to do memoization as a recursion-optimization automatically in C++. That is, it will identify recursive functions and replace them with versions that do result caching, to get the same benefit that a good functional language would offer:</p>
<p><a href="http://www.apl.jhu.edu/~paulmac/c++-memoization.html" rel="nofollow">http://www.apl.jhu.edu/~paulmac/c++-memoization.html</a></p>
http://stackoverflow.com/questions/129877/how-do-i-write-a-generic-memoize-function/141231#1412310Answer by Jon Ericson for How do I write a generic memoize function?Jon Ericson2008-09-26T18:50:05Z2008-09-26T22:26:14Z<p>Extending the idea, it's also possible to memoize functions with two input parameters:</p>
<pre><code>function memoize2 (f)
local cache = {}
return function (x, y)
if cache[x..','..y] then
return cache[x..','..y]
else
local z = f(x,y)
cache[x..','..y] = z
return z
end
end
end
</code></pre>
<p>Notice that parameter order matters in the caching algorithm, so if parameter order doesn't matter in the functions to be memoized the odds of getting a cache hit would be increased by sorting the parameters before checking the cache.</p>
<p>But it's important to note that some functions can't be profitably memoized. I wrote <strong>memoize2</strong> to see if the recursive <a href="http://en.wikipedia.org/wiki/Euclidean_algorithm" rel="nofollow">Euclidean algorithm</a> for finding the greatest common divisor could be sped up.</p>
<pre><code>function gcd (a, b)
if b == 0 then return a end
return gcd(b, a%b)
end
</code></pre>
<p>As it turns out, <strong>gcd</strong> doesn't respond well to memoization. The calculation it does is far less expensive than the caching algorithm. Ever for large numbers, it terminates fairly quickly. After a while, the cache grows very large. This algorithm is probably as fast as it can be.</p>
http://stackoverflow.com/questions/129877/how-do-i-write-a-generic-memoize-function/141689#1416893Answer by Lee Baldwin for How do I write a generic memoize function?Lee Baldwin2008-09-26T20:15:21Z2008-09-26T21:06:11Z<p>I bet something like this should work with variable argument lists in Lua:</p>
<pre><code>local function varg_tostring(...)
local s = select(1, ...)
for n = 2, select('#', ...) do
s = s..","..select(n,...)
end
return s
end
local function memoize(f)
local cache = {}
return function (...)
local al = varg_tostring(...)
if cache[al] then
return cache[al]
else
local y = f(...)
cache[al] = y
return y
end
end
end
</code></pre>
<p>You could probably also do something clever with a metatables with __tostring so that the argument list could just be converted with a tostring(). Oh the possibilities.</p>
http://stackoverflow.com/questions/129877/how-do-i-write-a-generic-memoize-function/144633#1446330Answer by Aaron for How do I write a generic memoize function?Aaron2008-09-27T22:31:58Z2008-09-27T22:48:35Z<p>In the vein of posting memoization in different languages, i'd like to respond to @onebyone.livejournal.com with a non-language-changing C++ example.</p>
<p>First, a memoizer for single arg functions:</p>
<pre><code>template <class Result, class Arg, class ResultStore = std::map<Arg, Result> >
class memoizer1{
public:
template <class F>
const Result& operator()(F f, const Arg& a){
typename ResultStore::const_iterator it = memo_.find(a);
if(it == memo_.end()) {
it = memo_.insert(make_pair(a, f(a))).first;
}
return it->second;
}
private:
ResultStore memo_;
};
</code></pre>
<p>Just create an instance of the memoizer, feed it your function and argument. Just make sure not to share the same memo between two different functions (but you can share it between different implementations of the same function).</p>
<p>Next, a driver functon, and an implementation. only the driver function need be public
int fib(int); // driver
int fib_(int); // implementation</p>
<p>Implemented:</p>
<pre><code>int fib_(int n){
++total_ops;
if(n == 0 || n == 1)
return 1;
else
return fib(n-1) + fib(n-2);
}
</code></pre>
<p>And the driver, to memoize</p>
<pre><code>int fib(int n) {
static memoizer1<int,int> memo;
return memo(fib_, n);
}
</code></pre>
<p><a href="http://codepad.org/4zddwKft" rel="nofollow">Permalink showing output</a> on codepad.org. Number of calls is measured to verify correctness. (insert unit test here...)</p>
<p>This only memoizes one input functions. Generalizing for multiple args or varying arguments left as an exercise for the reader. </p>
http://stackoverflow.com/questions/129877/how-do-i-write-a-generic-memoize-function/173038#1730382Answer by dreeves for How do I write a generic memoize function?dreeves2008-10-06T02:17:23Z2008-10-06T02:17:23Z<p>Mathematica has a particularly slick way to do memoization, relying on the fact that hashes and function calls use the same syntax:</p>
<pre><code>triangle[0] = 0;
triangle[x_] := triangle[x] = x + triangle[x-1]
</code></pre>
<p>That's it. It works because the rules for pattern-matching function calls are such that it always uses a more specific definition before a more general definition.</p>
<p>Of course, as has been pointed out, this example has a closed-form solution: <code>triangle[x_] := x*(x+1)/2</code>. Fibonacci numbers are the classic example of how adding memoization gives a drastic speedup:</p>
<pre><code>fib[0] = 1;
fib[1] = 1;
fib[n_] := fib[n] = fib[n-1] + fib[n-2]
</code></pre>
<p>Although that too has a closed-form equivalent, albeit messier: <a href="http://mathworld.wolfram.com/FibonacciNumber.html" rel="nofollow">http://mathworld.wolfram.com/FibonacciNumber.html</a></p>
<p>I disagree with the person who suggested this was inappropriate for memoization because you could "just use a loop". The point of memoization is that any repeat function calls are O(1) time. That's a lot better than O(n). In fact, you could even concoct a scenario where the memoized implementation has better performance than the closed-form implementation!</p>
http://stackoverflow.com/questions/129877/how-do-i-write-a-generic-memoize-function/263308#2633081Answer by Hercynium for How do I write a generic memoize function?Hercynium2008-11-04T20:26:01Z2008-11-04T20:26:01Z<p>In Perl generic memoization is easy to get. The Memoize module is part of the perl core and is highly reliable, flexible, and easy-to-use. </p>
<p>The example from it's manpage:</p>
<pre><code># This is the documentation for Memoize 1.01
use Memoize;
memoize('slow_function');
slow_function(arguments); # Is faster than it was before
</code></pre>
<p>You can add, remove, and customize memoization of functions <em>at run time!</em> You can provide callbacks for custom memento computation.</p>
<p>Memoize.pm even has facilities for making the memento cache persistent, so it does not need to be re-filled on each invocation of your program!</p>
<p>Here's the documentation: <a href="http://perldoc.perl.org/5.8.8/Memoize.html" rel="nofollow">http://perldoc.perl.org/5.8.8/Memoize.html</a></p>
http://stackoverflow.com/questions/129877/how-do-i-write-a-generic-memoize-function/1643199#16431990Answer by thSoft for How do I write a generic memoize function?thSoft2009-10-29T11:56:22Z2009-10-29T11:56:22Z<p>See <a href="http://www.uncarved.com/blog/memoization.mrk" rel="nofollow">this blog post</a> for a generic Scala solution, up to 4 arguments.</p>