Tagged Questions

44
votes
15answers
35k views

Algorithm to calculate the number of divisors of a given number

What would be the most optimal algorithm (performance-wise) to calculate the number of divisors of a given number? It'll be great if you could provide pseudocode or a link to some example. EDIT: All ...
4
votes
3answers
478 views

Fastest brainfuck interpreter?

Simple question: What is the fastest brainfuck interpreter available? I am asking this because I am about to write my own optimizing bf interpreter and I need something to compare it with.
3
votes
8answers
291 views

Which is optimal?

Is declaring a variable inside a loop is good or declaring on the fly optimal in Java.Also is there any performance cost involved while declaring inside the loop? eg. Option 1: Outside the Loop ...
0
votes
8answers
462 views

C/C++: is GOTO faster than WHILE and FOR?

I know, that everybody hates GOTO and nobody recommends it. But that's not the point. I just want to know, which code is the fastest: a) the goto loop int i=3; loop: printf("something"); if(--i) ...