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
}
|
|
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:
|
|||
|
|
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:
Where abs( n ) means return the absolute value of a number. Clearly this is not efficient, just to demonstrate a point. |
||||
|
|
|
It's a bit contrived and not very efficient, but you could do this with a function to calculate Fibbonacci numbers as in:
In this case its efficiency can be dramatically enhanced if the language supports memoization |
|||||||
|
|
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 ... |
|||
|
|
|
In a language with proper tail calls, Mutual Tail Recursion is a very natural way of implementing automata. |
|||
|
|