vote up 3 vote down star
3

I'm writing a function to find triangle numbers and the natural way to write it is recursively:

function triangle (x)
   if x == 0 then return 0 end
   return x+triangle(x-1)
end

But attempting to calculate the first 100,000 triangle numbers fails with a stack overflow after a while. This is an ideal function to memoize, but I want a solution that will memoize any function I pass to it.

flag

69% accept rate
Um. The top answer at the moment is to compute n*(n-1)/2. If the question is supposed to be "how do I calculate triangle numbers?" then can it be retitled? If it's supposed to be "how do I write a memoize function?" then can a note be added to the question and that answer down-voted to oblivion? ;-) – Steve Jessop Sep 24 '08 at 22:18
No offence to Luke H intended, by the way - it's a perfectly good answer to the scenario described, just not to the question title. He'll gain more rep points from the plus votes then he'd lose from the minus ones... – Steve Jessop Sep 24 '08 at 22:19
@onebyone.livejournal.com: Why bother? I appreciate his answer and it's sometimes helpful to be reminded that the best answer is often to pick a better algorithm. The question is answered 3ish times if anyone bothers to read down. Why don't you try your hand at an answer? Maybe I'll pick it. ;-) – Jon Ericson Sep 24 '08 at 22:26
Well, I don't know Lua, so I know I can't beat your answer for that. I've been looking around for one in C++, or to do my own, but just the templating is tricksy and I haven't yet figured out a way to make it optimise recursion properly (i.e. beyond one level). – Steve Jessop Sep 24 '08 at 22:46

12 Answers

vote up 3 vote down check

I bet something like this should work with variable argument lists in Lua:

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

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.

link|flag
Good work! I haven't looked at variable argument list in Lua yet, so this is a great example. – Jon Ericson Sep 26 '08 at 21:02
Is there a way to convert args into a value more efficiently than converting to a string? – Aaron Sep 27 '08 at 22:38
NOTE: you need to escape ',' characters in the string 's' -- otherwise memoize of f("1", "2,3") will return the same value as f("1,2", "3"), even if the two functions return different results. Which would be bad. – Aaron Sep 27 '08 at 22:39
It could be done as a N dimension array, which would solve the comma issue, but the cache access might be less efficient. Mathematical and recursive functions are the best candidates for memoization, so I don't think these are huge issues. – Jon Ericson Sep 28 '08 at 5:44
you should add an option to make the cache a weak table (weak keys and values), so the cache can get cleaned once in a while, and avoid memory bloating – Robert Gould Dec 12 '08 at 10:21
vote up 0 vote down

See this blog post for a generic Scala solution, up to 4 arguments.

link|flag
vote up 1 vote down

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.

The example from it's manpage:

# This is the documentation for Memoize 1.01
use Memoize;
memoize('slow_function');
slow_function(arguments);    # Is faster than it was before

You can add, remove, and customize memoization of functions at run time! You can provide callbacks for custom memento computation.

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!

Here's the documentation: http://perldoc.perl.org/5.8.8/Memoize.html

link|flag
vote up 2 vote down

Mathematica has a particularly slick way to do memoization, relying on the fact that hashes and function calls use the same syntax:

triangle[0] = 0;
triangle[x_] := triangle[x] = x + triangle[x-1]

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.

Of course, as has been pointed out, this example has a closed-form solution: triangle[x_] := x*(x+1)/2. Fibonacci numbers are the classic example of how adding memoization gives a drastic speedup:

fib[0] = 1;
fib[1] = 1;
fib[n_] := fib[n] = fib[n-1] + fib[n-2]

Although that too has a closed-form equivalent, albeit messier: http://mathworld.wolfram.com/FibonacciNumber.html

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!

link|flag
vote up 0 vote down

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.

First, a memoizer for single arg functions:

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_;
};

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).

Next, a driver functon, and an implementation. only the driver function need be public int fib(int); // driver int fib_(int); // implementation

Implemented:

int fib_(int n){
    ++total_ops;
    if(n == 0 || n == 1) 
        return 1;
    else
        return fib(n-1) + fib(n-2);
}

And the driver, to memoize

int fib(int n) {
    static memoizer1<int,int> memo;
    return memo(fib_, n);
}

Permalink showing output on codepad.org. Number of calls is measured to verify correctness. (insert unit test here...)

This only memoizes one input functions. Generalizing for multiple args or varying arguments left as an exercise for the reader.

link|flag
vote up 0 vote down

Extending the idea, it's also possible to memoize functions with two input parameters:

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

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.

But it's important to note that some functions can't be profitably memoized. I wrote memoize2 to see if the recursive Euclidean algorithm for finding the greatest common divisor could be sped up.

function gcd (a, b) 
   if b == 0 then return a end
   return gcd(b, a%b)
end

As it turns out, gcd 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.

link|flag
Couldn't you use a vararg in the closure returned by the memoize function? In Lua, you can do things like t = {...} to pack variable argument list into a table, or directly call a function and pass the f(...). Then just pack the vararg list to string to use as the cache index. – Lee Baldwin Sep 26 '08 at 19:44
NOTE: this will break if arguments contain ',' comma when converted to string. eg, f("1", "2,3") will evaluate same as f("1,2", "3"), even if that is the incorrect result. – Aaron Sep 27 '08 at 22:46
vote up 2 vote down

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:

http://www.apl.jhu.edu/~paulmac/c++-memoization.html

link|flag
vote up 3 vote down

Update: 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.

I think Luke likely has the most appropriate solution to this problem, but memoization is not generally the solution to any issue of stack overflow.

Stack overflow usually is caused by recursion going deeper than the platform can handle. Languages sometimes support "tail recursion", 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.

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.

link|flag
I thought that was the reason for the questioner saying he was calculating the first 10,000 triangular numbers. It demonstrates (in a contrived way) that memoization can reduce/prevent recursion 'automatically' if terms of f are calculated in increasing order, because the small values are cached. – Steve Jessop Sep 24 '08 at 21:26
... of course the cache has to be big enough. A smarter memoization function might restrict the cache size, and that would still prevent recursion in this toy example. The point being that all this leads to Functional Language Optimization 101. – Steve Jessop Sep 24 '08 at 21:31
Actually, this function ought to be memoized even if tail recursion is in effect. To convince yourself, imagine calling it twice with two very large numbers. The second call will be much faster if the results of the first are cached. – Jon Ericson Sep 24 '08 at 21:50
vote up 4 vote down

You're also asking the wrong question for your original problem ;)

This is a better way for that case:

triangle(n) = n * (n - 1) / 2

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 this answer for a fuller discussion.

link|flag
Playing around with the function it seemed obvious there would be a simpler algorithm. Thanks! – Jon Ericson Sep 24 '08 at 21:00
You have got to be kidding me. – Steve Jessop Sep 24 '08 at 21:04
@onebyone.livejournal.com: I'm sure when I solve the problem, the notes will reveal this mathematical solution. ;-) – Jon Ericson Sep 24 '08 at 21:44
vote up 2 vote down

In Scala (untested):

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
    }
  }
}

Note that this only works for functions of arity 1, but with currying you could make it work. The more subtle problem is that memoize(f) != memoize(f) for any function f. One very sneaky way to fix this would be something like the following:

val correctMem = memoize(memoize _)

I don't think that this will compile, but it does illustrate the idea.

link|flag
Can I just say that you'd have saved me approximately 30 seconds confusion if you'd said "memoize(f) != memoize(f) for any function f" instead of "some function f"? I started thinking about fixed-point existence proofs, then realised you mean the exact same thing I did in my comments further up :-) – Steve Jessop Sep 24 '08 at 21:23
lol Good point, my statement isn't quite sufficient. I'll fix it. – Daniel Spiewak Sep 24 '08 at 22:55
To me at least, scala looks like some frankenstien monster of Python, c#, and c++. – RCIX Sep 6 at 15:55
vote up 0 vote down

Here is a generic C# 3.0 implementation, if it could help :

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;
                };
    }
}

(Quoted from a french blog article)

link|flag
vote up 3 vote down
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);

Note that to avoid a stack overflow, triangle would still need to be seeded.

link|flag
An interesting (but useless) construction with a generic memoize function: calling memoize on memoize – Adam Rosenfield Sep 24 '08 at 20:52
@ Adam Rosenfield: Hmmm... funky! – Jon Ericson Sep 24 '08 at 20:54
Is that actually useless? If you memoize the same thing twice using this function, you get a brand new cache. If you memoize it using the memoization of this memoize function, you get back the same memoization of the original, with its cache already pre-primed. I think. My brain hurts. – Steve Jessop Sep 24 '08 at 20:56
Where by "twice", I mean chronologically - two different bits of code that each call M(f) get separate caches. If they call (M(M))(f) using the same instance of M(M), then they'd share an f-cache between them, without needing to know or care that it's the same function they've both memoized. – Steve Jessop Sep 24 '08 at 21:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.