Chapter 12: Problem 5
What is direct recursion? What is indirect recursion?
Short Answer
Expert verified
Answer: Direct recursion occurs when a function calls itself within its own definition, usually to solve problems that can be broken down into smaller, similar subproblems. An example of direct recursion is the calculation of the factorial of a number (n!) using the function Factorial(n). In contrast, indirect recursion happens when a function calls another function, which then calls the original function, creating a cycle of function calls. An example of indirect recursion is the calculation of the odd and even sequence for a number using two alternating functions, odd(n) and even(n).