vote up 5 vote down star
2

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)?

flag

Please check out this SO question - stackoverflow.com/questions/660337/… – msvcyc Jul 18 at 3:00
apologies, I usually look first, but this time I skipped it. Then I found a whoooole bunch of similar questions. – Carson Myers Jul 18 at 3:06

closed as exact duplicate by George Stocker, Fredrik Mörk, Brian, Neil Butterworth, dbr Jul 18 at 3:49

7 Answers

vote up 6 vote down check

In general, you should consider using recursion rather than iteration when you're processing recursively defined data, like a graph or tree, because the structure of the code naturally fits the structure of the data.

If you want to understand this in detail and have your mind blown, see The Little Schemer

link|flag
vote up 1 vote down

Recursion is not really terribly interesting until you get to things that are plain hard to express any other way. A good example of that is a language recognizer. The way to implement this in a simple loop manner is to create a state machine with some way to store previously seen states. This is perfectly valid, and how regular expressions are usually implemented, but are basically really hard for a human to read.

If instead, the language is recognized by means of several functions, calling each other, the result is much easier to grok. Try to translate the following pseudocode into a form that does not use any recursion.

function accept( accept_token) :
    read the next token
    if it is accept_token: 
        return True
    else
        put the token back
        return False

function expect( accept_token ):
    if accept(accept_token):
        return True
    else
        raise a Syntax Error!

function number(): 
    if accept('0') or accept('1'): 
        return True
    else
        raise a Syntax Error!


function term():
    atom()
    while accept('*'):
        atom()

function sum():
    term()
    while accept('+'):
        term()

function atom():
    if accept('('):
        sum()
        expect(')')
    else:
        number():

function expression():
    if sum():
        Success!
    else:
        Syntax Error.

Notice how the above function atom() calls sum(), which calls term(), which goes back to calling atom(). Even if you've never seen a recursive descent parser, this actually sort of describes what it's doing. The first advantage of a recursive design can be that it is more obvious what it is doing, for algorithms that lend themselves to it. This is of course equally true of iterative algorithms that lend themselves to that. Note for instance that the term() and sum() functions iterate, trying to get more factors or terms until they don't see any more *'s or +'s.

link|flag
vote up 0 vote down

Recursion can help to encapsulate functionality, e.g., you write a method exploreBranch(). You might want to reuse that method in another context. So, recursion supports your program design in terms of readability and maintainability.

link|flag
vote up 1 vote down

despite it being really elegant

That's the crux of the matter right there. Recursion can be really elegant. It can help you express the intent of your code better. Which is what we're all doing right? Trying to make sure the what comes through amongst the nitty gritty of the how. And making sure those violent psychopaths have no reason to pay us a home visit :-)

link|flag
ha! I hadn't seen that one yet. – Carson Myers Jul 18 at 8:46
vote up 3 vote down

If you're going through a deep directory structure that you know nothing about, it's fairly difficult to come up with an appropriate looping structure, this is where recursion comes to great use.

link|flag
vote up 5 vote down

I agree -- the standard factorial example is a terrible example of when to use recursion. Totally unnecessary, and slower.

Tree traversal algorithms, however, are often much more elegant when written recursively.

link|flag
vote up 2 vote down

Anywhere you can use recursion, you can iterate (use a loop).

It may not be as elegant, but often times it uses less memory than recursion.

There have only been a handful of times that I've used recursion (using it to traverse a tree, for example); it was more elegant than the alternative, and in that case, performance wasn't an issue.

link|flag
anywhere? not sure about that – Simon Jul 18 at 3:08

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