0

Is there a similar way in C# to do the following:

class Memoize:
    def __init__(self, f):
        self.f = f
        self.memo = {}
    def __call__(self, *args):
        if not args in self.memo:
            self.memo[args] = self.f(*args)
        return self.memo[args]

@Memoize
def fib(n):
    if n < 2:
        return n
    else:
        return fib(n-1) + fib(n-2)
4

1 回答 1

0

您可以使用以下命令手动完成Dictionnary<int, int>

public static int Fibonacci(int x)
{
    var t = new Dictionary<int, int>();
    Func<int, int> fibCached = null;
    fibCached = n =>
    {
        if (t.ContainsKey(n)) return t[n];
        if (n <= 2) return 1;
        var result = fibCached(n – 2) + fibCached(n – 1);
        t.Add(n, result);
        return result;
    };
    return fibCached(x);
}
于 2013-10-11T10:02:00.750 回答