8
votes
13answers
635 views
Should I use recursion or memoization for an algorithm?
If I have a choice to use recursion or memoization to solve a problem which should I use? In other words if they are both viable solutions in that they give the correct output and …
5
votes
3answers
343 views
In Ruby, should I use ||= or if defined? for memoization?
Should I use if defined?
return @current_user_session if defined?(@current_user_session)
@current_user_session = UserSession.find
Or ||=
@current_user_session ||= UserSession …
5
votes
3answers
284 views
Haskell function definition and caching arrays
I have a question about implementing caching (memoization) using arrays in Haskell. The following pattern works:
f = (fA !)
where fA = listArray...
But this does not (the spe …
5
votes
5answers
444 views
Caching delegate results
I have a C# method which accepts a Predicate<Foo> and returns a list of matching items...
public static List<Foo> FindAll( Predicate<Foo> filter )
{
...
}
…
4
votes
7answers
295 views
How to get optimization from a “pure function” in C#?
If I have the following function, it is considered pure in that it has no side effects and will always produce the same result given the same input x.
public static int AddOne(int …
4
votes
5answers
142 views
generic non-invasive cache wrapper
I'm trying create a class which adds functionality to a generic class, without directly interfacing with the wrapped class. A good example of this would be a smart pointer. Speci …
4
votes
6answers
572 views
How do I memoize a recursive function in Lisp?
I'm a Lisp beginner. I'm trying to memoize a recursive function for calculating the number of terms in a Collatz sequence (for problem 14 in Project Euler). My code as of yet is:
…
3
votes
6answers
452 views
How does this C++ function use memoization?
#include <vector>
std::vector<long int> as;
long int a(size_t n){
if(n==1) return 1;
if(n==2) return -2;
if(as.size()<n+1)
as.resize(n+1);
if(as[n]<= …
2
votes
3answers
165 views
Is there a good cached memoization plugin for rails?
I have a model along the lines of:
class Account < ActiveRecord::Base
has_many :payments
has_many :purchases
def balance
payments.sum(:dollar_amount) - purchases.ma …
2
votes
3answers
138 views
Is there a way to caching mechanism for Class::DBI?
I have a set of rather complex ORM modules that inherit from Class::DBI. Since the data changes quite infrequently, I am considering using a Caching/Memoization layer on top of thi …
1
vote
4answers
180 views
Thread-safe memoization
Let's take Wes Dyer's approach to function memoization as the starting point:
public static Func<A, R> Memoize<A, R>(this Func<A, R> f)
{
var map = new Diction …
1
vote
3answers
246 views
What kinds of functions are candidates for memoization?
I've decided on PostSharp (indistinguishable from magic) to read attributes and memoize functions. The hash of the function call will be the key and the cached (in Velocity) result …
1
vote
1answer
315 views
When to use memoization in Ruby on Rails
In mid July 2008 Memoization was added to Rails core. A demonstration of the usage is here.
I have not been able to find any good examples on when methods should be memoized, and …
1
vote
1answer
221 views
Dynamic Programming Recursion and a sprinkle of Memoization
I have this massive array of ints from 0-4 in this triangle. I am trying to learn dynamic programming with Ruby and would like some assistance in calculating the number of paths i …
0
votes
3answers
55 views
Ruby Maths Function Memoization
Hi All,
I wrote some code that looks like this:
def get(x, y)
@cachedResults.set(x,y, Math.hypot(x, y)) if @cachedResults.get(x,y).nil?
@cachedResults.get(x,y)
end
Where …
