Search Results

6
votes

What is the cost of a function call?

relative timings (shouldn't be off by more than a factor of 100 ;-) memory-access in cache = 1 function call/return in cache = 2 memory-access out of cache = 10 .. 3 …
4
votes

Minimizing the sum of a special function over a list

"Sorting" is usually defined using a binary comparison operator ("less-than-or-equal"). What you are looking for is the "best" permutation of a list, where "best" is defined as a criterion that is …
3
votes

Recursion or iteration?

If an algorithm can be expressed most naturally in a recursive form, and if the stack depth is small (in the log(N) range, i.e. typically <20), then by any means use recursion. …
1
vote

Optimization! - What is it? How is it done?

Optimizing a program means: make it run faster The only way of making the program faster is making it do less: find an algorithm tha …
0
votes

Is there a way to improve the speed or efficiency of this lookup? (C/C++)

If all you need is a short string key, converting to base-64 numbers would speed up things a lot, since div/mod 64 is very cheap (shift/mask). …