Possible Duplicates:
Which recursive functions cannot be rewritten using loops?
Can every recursion be converted into iteration?
Consider a simple function for generating Fibonacci series
//recursive
long fib(unsigned long n) {
if (n <= 1)
{ return n; }
else
{ return fib(n-1)+fib(n-2); }
}
// non recursive
fibonacci (int n)
{
int previous = -1 ;
int result 1 ;
for ( int I = 0 ; i < = n ; ++i )
{
int sum = result + previous;
previous result;
result sum;
return result;
}
}
Is it always possible to write a non-recursive form for every recursive function? Or there are some issues regarding it?
