Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Are there any example for a recursive function that call an other one which calls the first one too ?

example

function1()
{    
    //do something 
    f2();
    //do something
}

function2()
{
    //do something 
    f1();
    //do something
}
share|improve this question
2  
You just provided one :) unless you meant real life example? – Anthony Forloney Apr 27 '10 at 20:54
i mean a real world one :) – Yassir Apr 27 '10 at 20:56
2  
ahhhhhh stackoverflow!!! lol – Gabe Apr 27 '10 at 20:56
The general term is “mutual recursion”, and yeah, there are many, many cases where the calls made by a function would be likely to cause a nested call into that function. – bobince Apr 27 '10 at 21:23

5 Answers

up vote 15 down vote accepted

Mutual recursion is common in code that parses mathematical expressions (and other grammars). A recursive descent parser based on the grammar below will naturally contain mutual recursion: expression-terms-term-factor-primary-expression.

expression
    + terms
    - terms
    terms

terms
    term + terms
    term - terms

term
    factor
    factor * term
    factor / term

factor
    primary
    primary ^ factor

primary
    ( expression )
    number
    name
    name ( expression )
share|improve this answer
+1, I was thinking about this, too. In fact, using mutual tail recursion to implement automata is just a special case of a tail recursive descent parser, which in turn is a variant of a recursive descent parser. – Jörg W Mittag Apr 28 '10 at 22:39

The proper term for this is Mutual Recursion.

http://en.wikipedia.org/wiki/Mutual_recursion

There's an example on that page, I'll reproduce here in Java:

boolean even( int number )
{    
    if( number == 0 )
        return true;
    else
        return odd(abs(number)-1)
}

boolean odd( int number )
{
    if( number == 0 )
        return false;
    else
        return even(abs(number)-1);
}

Where abs( n ) means return the absolute value of a number.

Clearly this is not efficient, just to demonstrate a point.

share|improve this answer

It's a bit contrived and not very efficient, but you could do this with a function to calculate Fibbonacci numbers as in:


fib2(n) { return fib(n-2); }

fib1(n) { return fib(n-1); }

fib(n)
{
  if (n>1)
    return fib1(n) + fib2(n);
  else
    return 1;
}

In this case its efficiency can be dramatically enhanced if the language supports memoization

share|improve this answer
Mutual Recursion is not the same as Double Recursion, the question describes Mutual Recursion. Any mutually recursive set of functions can be unrolled into a single recursive function simply by inlining the code. – Geoff Apr 27 '10 at 21:30
You've fixed it now, my comment looks out of place! – Geoff Apr 27 '10 at 21:49
@Geoff: No problem... I got a little carried away and started writing stuff without thinking. – andand Apr 27 '10 at 23:39

An example might be the minmax algorithm commonly used in game programs such as chess. Starting at the top of the game tree, the goal is to find the maximum value of all the nodes at the level below, whose values are defined as the minimum of the values of the nodes below that, whose values are defines as the maximum of the values below that, whose values ...

share|improve this answer
Good use case.. – Geoff Apr 27 '10 at 21:48

In a language with proper tail calls, Mutual Tail Recursion is a very natural way of implementing automata.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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