previous
|
start
|
next
Mutual Recursion
Sometimes, a set of cooperating functions calls each other in a recursive fashion.
For our example, we will develop a program that can compute the values of arithmetic expressions such as
3 + 4 * 5 (3 + 4) * 5 1 - (2 - (3 - (4 - 5)))
previous
|
start
|
next