Possible Duplicate:
Recursion vs loops
I was playing with recursion today, and despite it being really elegant, I can think of reasons I wouldn't want to use it.
For one, you have to be careful what you put into a recursive function, and how you write them--or you can wind up with stack overflows and segmentation faults.
Also, they're considerably slower than just looping. For example, the standard recursion demonstration, a factorial function:
long long int rfactorial(int num){
if(num == 1) return num;
return num * rfactorial(num - 1);
}
long long int lfactorial(int num){
long long int result = num--;
while(num > 0) result = result * num--;
return result;
}
I wrote a loop which calculates the factorial of 40, 500,000 times. Although I didn't time it but the looped one is around twice as fast as the recursive one. I compiled it with whatever the default optimizations are for gcc 4.3.3.
So where are recursive functions practical? Or, necessary (like a situation where you can't simply use a loop)?
