In computing, memoization is an optimization technique used primarily to speed up computer programs by having function calls avoid repeating the calculation of results for previously-processed inputs.
0
votes
1answer
51 views
How to do memoisation in following c++ code
Actually i am trying to solve SPOJ Problem:
[SPOJ] http://www.spoj.com/problems/SQRBR/ . I came up with recurence to solve it but i am not getting how to do memoisation. Any suggestion on how to ...
-1
votes
2answers
66 views
How to cache value of a function in Python?
I have a function, which given an argument calculates a corresponding value and returns it. Returned value of the function, depends only on its parameters, so I'd like to cache (memoize) the value ...
0
votes
0answers
13 views
Dynamic Programming Card Game
Please check out this problem I have:
"You and your eight-year-old nephew Elmo decide to play a simple card game. At the beginning
of the game, the cards are dealt face up in a long row. Each card ...
1
vote
1answer
117 views
Recursive algorithm using memoization
My problem is as follows:
I have a list of missions each taking a specific amount of time and grants specific amount of points, and a time 'k' given to perform them:
e.g: missions = ...
2
votes
2answers
63 views
memoize to disk - python - persistent memoization
Is there a way to memoize the output of a function to disk?
I have a function
def getHtmlOfUrl(url):
... # expensive computation
and would like to do something like:
def getHtmlMemoized(url) ...
2
votes
2answers
49 views
What is the need of memoization in python
I was reading this article
http://programmingzen.com/2009/05/18/memoization-in-ruby-and-python/
Actually can anyone please explain with example what will happen if i don't use it. I am not able to ...
1
vote
1answer
155 views
Is there a generic way to memoize in Scala?
I wanted to memoize this:
def fib(n: Int) = if(n <= 1) 1 else fib(n-1) + fib(n-2)
println(fib(100)) // times out
So I wrote this and this surprisingly compiles and works (I am surprised because ...
1
vote
1answer
63 views
Coin change memoization
Does the following algorithm to find all possible ways of making changes for a particular sum really use memoization?
func count( n, m )
for i from 0 to n
for j from 0 to m
if i equals 0
...
3
votes
1answer
181 views
Memoizing IO Computations in Haskell
I have a function
f :: MonadIO m => a -> m b
which takes some input and returns an IO computation that will yield output. I want to "memoize" f so that I only ever perform these computations ...
1
vote
1answer
51 views
using memoize in groovy
I am currently practicing test driven development in groovy using spock.
I have 1 set of tests where 3 different implementations doing the same thing: iterative, recursive, and memoized.
so I have ...
2
votes
1answer
58 views
Memoization during delayed evaluation
The book Structure and Interpretation of Computer Programs introduces a memoizing procedure as follows:
(define (memo-proc proc)
(let ((already-run? false) (result false))
(lambda ()
(if ...
0
votes
2answers
44 views
Store the cache to a file functools.lru_cache in Python >= 3.2
I'm using @functools.lru_cache in Python 3.3. I would like to save the cache to a file, in order to restore it when the program will be restarted. How could I do?
Edit 1 Possible solution: We need to ...
6
votes
2answers
156 views
How does this memoized fibonacci function work?
In the current exercise assignment of the Functional Programming course I'm doing, we've got to make a memoized version of a given function. To explain memoization, the following example is given:
...
2
votes
3answers
94 views
Why do I still burn out the stack using tail recursive Fibonacci algorithm?
Stack overflows before n=1000. Is it because of the reference to the long[] parameter, that the JVM feels the need to hold on to every stack frame (wild guess), or am I doing something else wrong?
...
4
votes
2answers
118 views
Python - Memoization and Collatz Sequence
When I was struggling to do Problem 14 in Project Euler, I discovered that I could use a thing called memoization to speed up my process (I let it run for a good 15 minutes, and it still hadn't ...
1
vote
1answer
52 views
How to retrieve properties only once from database in django
I have some relationships in my database that I describe like that:
@property
def translations(self):
"""
:return: QuerySet
"""
if not hasattr(self, '_translations'):
...
2
votes
2answers
99 views
Pandas memoization
I have lengthy computations which I repeat many times. Therefore, I would like to use memoization (packages such as jug and joblib), in concert with Pandas. The problem is whether the package would ...
0
votes
2answers
103 views
Memoization in limited space
While trying to increase the speed for my answer for this contest, I have a function which takes two values n and k and produces an output. The calculations are repeated, so I'm memoizing it. I can't ...
2
votes
1answer
76 views
Maximum recursion depth reached faster when using functools.lru_cache
I've been playing around with memoization and recursion in python 3.3
Ignoring the fact that python is the wrong language to be doing this in, I've found that I get inconsistent results between using ...
0
votes
2answers
65 views
Python memoized with **kwargs when calling a function doesn't seem to work
The call to GetData1 works well and prints:
hello 67 8.3
the call to GetData2 fails:
TypeError: __call__() got an unexpected keyword argument 'arg1'
My code is
class Memoized(object):
def ...
10
votes
3answers
333 views
Does Haskell optimizer utilize memoization for repeated function calls in a scope?
Consider this function:
f as = if length as > 100 then length as else 100
Since the function is pure it's obvious that the length will be the same in both calls. My question is does Haskell ...
10
votes
2answers
273 views
Memoizing multiplication
My application multiplies vectors after a (costly) conversion using an FFT. As a result, when I write
f :: (Num a) => a -> [a] -> [a]
f c xs = map (c*) xs
I only want to compute the FFT ...
0
votes
1answer
33 views
Object instantiated as “new” from closure cannot directly access properties of returned object
I am trying to create a JavaScript library of UI components that are commonly used by the projects in my group. I have the following code to define the library.
var libName = function() {
var ...
2
votes
1answer
81 views
Memoization:Rememo
The array memo[][] is returning the cloth that is that is in memo[X][Y]. I have tested this class and it seems like it only stores the first cloth that fits in memo[X][Y], but I want it to return the ...
0
votes
2answers
59 views
broken memoization code
I have a series of numbers I need to find the sum of. The value of the first iterative operation is 1, the second is 20. Every iteration which follows then uses the previous result in the formula n ...
0
votes
3answers
63 views
Memoization of Dynamic Programming
I'm trying to learn Memoization of Dynamic Programming and I was watching video on youtube from MIT trying to follow along with it. I don't know how to compare the Nth value to an array.
int[] memo;
...
0
votes
0answers
62 views
Dynamically assigning an object/dict method that overwrites itself with a function result on first access
I figured this would be a fun Sunday morning problem to work out. It's been 3 hours and I'm nowhere close...
Background:
I'm using dogpile to cache read-only data from SqlAlchemy.
I convert a row ...
3
votes
2answers
65 views
Does Memoization improve running time of this algorithm?
"Given an array of n integers, return an array of their factorials."
Instead of the straight forward way of iterating through the array and finding factorial for each, I was thinking of a ...
9
votes
2answers
376 views
Choosing between continuation passing style and memoization
While writing up examples for memoization and continuation passing style (CPS) functions in a functional language, I ended up using the Fibonacci example for both. However, Fibonacci doesn't really ...
0
votes
1answer
69 views
is a python memoize decorator process-safe?
Is the cache in a standard memoize decorator process-safe?
For example, suppose I define the following decorator:
import functools
def memoize(func):
cache = {}
@functools.wraps(func)
...
0
votes
4answers
86 views
Identifying equivalent varargs function calls for memoization in Python
I'm using a variant of the following decorator for memoization (found here):
# note that this decorator ignores **kwargs
def memoize(obj):
cache = obj.cache = {}
@functools.wraps(obj)
...
1
vote
0answers
47 views
Does Rails.cache.fetch perform better with memoization
I've searched and cannot seem to find a good source for whether it could be considered a good practice to combine methods for the following: When using memcached with the dalai gem and have a method ...
4
votes
1answer
116 views
Why is this second closure needed in John Resig's JavaScript?
I am reading Secrets of the JavaScript Ninja by John Resig and Bear Bibeault, currently up to Chapter 5 on closures. I think have the general gist of closures and how JavaScript operates with function ...
0
votes
2answers
154 views
Parallel recursive memoization in Scala
I have a memoized divide and conquer algorithm in Scala:
val cache = mutable.Map[Int, BigInt]()
cache(1) = BigInt(0)
def dp(n: Int): BigInt = cache.getOrElseUpdate(n, {
partitions(n).map(i => ...
0
votes
2answers
180 views
Memoization in OCaml?
It is possible to improve "raw" Fibonacci recursive procedure
Fib[n_] := If[n < 2, n, Fib[n - 1] + Fib[n - 2]]
with
Fib[n_] := Fib[n] = If[n < 2, n, Fib[n - 1] + Fib[n - 2]]
in Wolfram ...
0
votes
3answers
162 views
subset sum with memoization
for homework, i wrote a recursive function for subset sum, but i can't find the right key for my dictionary, i keep getting key errors all the time.
not looking for the solution, just explanations ...
0
votes
0answers
78 views
java recursive longest increasing subseq with memoization
I'm trying to get the solution work for this post: memoization for recursive Longest Increasing subsequence
Could you please help me adding memoization to this code?
public int findLIS(int a[], int ...
3
votes
2answers
218 views
To memoize or not to memoize
... that is the question. I have been working on an algorithm which takes an array of vectors as input, and part of the algorithm repeatedly picks pairs of vectors and evaluates a function of these ...
0
votes
1answer
136 views
How to get a reference to a function that doesn't take parameters in F#?
I sometimes have the need to get the function itself, not the value, of a zero-parameter function in F#, for instance for memoization. I.e., I have this:
let memoize (f: 'a -> 'b) =
let dict = ...
4
votes
2answers
117 views
How can I memoize a function with lists as parameters or return values in Haskell?
I am implementing a function with the following signature to solve the 0-1 knapsack problem in Haskell.
knapsack :: [Item] -> Capacity -> [Item]
Where the Item and Capacity files are defined ...
1
vote
0answers
84 views
Universal memoization in Haskell [duplicate]
Possible Duplicate:
When is memoization automatic in GHC Haskell?
It looks like Haskell does not memoize all and every function by default - please note, I'm new to Haskell, so I might have ...
0
votes
2answers
168 views
Efficient generic Python memoize
I have a generic Python memoizer:
cache = {}
def memoize(f):
"""Memoize any function."""
def decorated(*args):
key = (f, str(args))
result = cache.get(key, None)
if ...
1
vote
1answer
230 views
memoization for recursive Longest Increasing subsequence
I came up with simple following brute force recursive solution for Longest increasing sub-sequence.
But, Can you help to include memoization into this recursive solution.
public int findLIS(int a[], ...
2
votes
1answer
126 views
Memoization in recursive function
I came across a weird phenomenon:
I wrote a code to calculate "Catalan Numbers", which works , but now I'm trying to improve run-time by using a Memoization dictionary (called it dicatalan):
...
-1
votes
3answers
296 views
count number of basketball plays when given the final score
Given the final score of a basketball game, how i can count the number of possible scoring sequences that lead to the final score.
Each score can be one of: 3 point, 2 point, 1 point score by either ...
1
vote
0answers
110 views
Haskell: Caches, memoization, and referential transparency [duplicate]
Possible Duplicate:
When is memoization automatic in GHC Haskell?
I understand that due to referential transparency in Haskell programs, it should be nearly trivial to memoize most ...
1
vote
2answers
73 views
What is a good way to memoize data across many instances of a class in Ruby?
Consider: many instances of an object that generates data. It would be great to only generate that data once per run.
class HighOfNPeriods < Indicator
def generate_data
@indicator_data = ...
3
votes
1answer
63 views
DRY caching in C
I'm looking to DRY out the following C code:
if (i < SIZE_OF_V) {
if (V[i])
K = V[d];
else
K = V[d] = (expensive complicated call);
} else {
K = (expensive complicated ...
2
votes
3answers
127 views
Ruby Pascal's triangle generator with memoization
I am attempting to memoize my implementation of a Pascal's triangle generator, as a Ruby learning experiment. I have the following working code:
module PascalMemo
@cache = {}
def ...
0
votes
2answers
175 views
How to store itertools.chain and use it more than once?
I would like to use itertools.chain for efficient concatenation of lists (memoization), but I need to be able to read (or map, etc.) the result multiple times. This example illustrates the problem:
...