vote up 4 vote down star
2

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?

flag

Someone voted to close this question by under "blatantly offensive". What the hell? Can anybody please explain? – Ravi Nov 2 at 16:54
1  
Duplicate of: stackoverflow.com/questions/931762 – Henk Holterman Nov 2 at 17:04
4  
@Ravi: Someone probably was offended because it looks like you just copy-pasted a homework assignment here, without any further comment or question, just assuming that somebody should solve it for you. Down to the "Please justify your answer" which just increases the feeling that you are saying "people, do my work, now!!!". And people can get offended by such behaviour. (If it's not homework: it sure sounds like it would be) – sth Nov 2 at 17:05
2  
@Ravi: despite that you don't use the word 'loop' they are 2 exact duplicates. – Henk Holterman Nov 2 at 17:07
2  
@Ravi, the 'blatantly offensive' vote was silly but it really was a duplicate (I'm quite sure there are more versions). – Henk Holterman Nov 2 at 17:16
show 6 more comments

closed as exact duplicate by David, Henk Holterman, Peter Boughton, Mark Biek, JRL Nov 2 at 17:13

7 Answers

vote up 8 vote down check

Is it always possible to write a non-recursive form for every recursive function?

Yes. A simple formal proof is to show that both µ recursion and a non-recursive calculus such as GOTO are both Turing complete. Since all Turing complete calculi are strictly idempotent, all recursive functions can be implemented by the non-recursive Turing-complete calculus.

Unfortunately, I’m unable to find a good, formal definition of GOTO online so here’s one:

A GOTO program is a sequence of commands P executed on a register machine such that P is one of the following:

  • HALT, which halts execution
  • r = r + 1 where r is any register
  • r = r + 1 where r is any register
  • GOTO x where x is a label
  • IF r ≠ 0 GOTO x where r is any register and x is a label
  • A label, followed by any of the above commands.

However, the conversions between recursive and non-recursive functions isn’t always trivial (except by mindless manual re-implementation of the call stack).

link|flag
Aha! Konrad, you are back. – Ravi Nov 2 at 17:18
vote up 0 vote down

Have a look at the following entries on wikipedia, you can use them as a starting point to find a complete answer to your question.

Follows a paragraph that may give you some hint on where to start:

Solving a recurrence relation means obtaining a closed-form solution: a non-recursive function of n.

Also have a look at the last paragraph of this entry.

link|flag
vote up 0 vote down

Homework question, huh?

What I remember from CS coursework was that tail-end recursion is always writeable as non-recursive, other types of recursion may be, but it's not an absolute rule...

As to justifying your answer, you gotta do that, it's your homework assignment ;-)

link|flag
I stand corrected, see Konrad's answer. – gmagana Nov 2 at 17:26
vote up 0 vote down

No - not every recursive function is expressable as a non-recursive relation.

I forget exact examples off the top of my head, but it's generally covered in-depth in a discrete mathematics course at the collegiate level.

EDIT
I was thinking of recurrence relations not recursive functions. Not all of those have [known] closed-forms.

link|flag
1  
Please provide an example. – Lucas B Nov 2 at 17:02
2  
An example would be really interesting, since your claim is incorrect. – Konrad Rudolph Nov 2 at 17:03
I guess you remembered something about replacing recursion with iteration without using additional memory (e.g. stack). Just like tail recursion would be. Right? – GrzegorzOledzki Nov 2 at 17:09
His claim is correct (not every recursive function is rewriteable as non-recursive), just not enough detail. – gmagana Nov 2 at 17:12
@gmagana: check your computer science basics. The claim is simply wrong and the formal proof to the contrary is trivial. See my answer for details. – Konrad Rudolph Nov 2 at 17:14
show 1 more comment
vote up 3 vote down

Yes, it's always possible to write a non-recursive version. The trivial solution is to use a stack data structure and simulate the recursive execution.

link|flag
vote up 1 vote down

I'd say yes - a function call is nothing but a goto and a stack operation (roughly speaking). All you need to do is imitate the stack that's built while invoking functions and do something similar as a goto (you may imitate gotos with languages that don't explicitly have this keyword too).

link|flag
1  
I think the OP is looking for a proof or something else substantive – tim Nov 2 at 16:56
vote up 24 vote down

That's already been answered: please see this question

link|flag
1  
Oh really ????? – Ravi Nov 2 at 16:51
8  
how long have you been waiting to do that?! – dsclose Nov 2 at 16:51
1  
I changed my answer to community wiki - getting hit points for that is silly. And my apologies - this is actually a good question and I assumed would be answered for real by the time I hit submit – tim Nov 2 at 16:55
1  
11 upvotes in just 2 mins....you must be kidding man... – Ravi Nov 2 at 16:56
4  
And now for the real test: can we close this as a duplicate of itself? – Henk Holterman Nov 2 at 16:59
show 9 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.