Chapter 13: Problem 5
What is direct recursion? What is indirect recursion?
Short Answer
Expert verified
Question: Define direct recursion and indirect recursion and provide examples for each.
Answer: Direct recursion occurs when a function calls itself within its own function definition, such as calculating the factorial of a number using the formula n * factorial(n - 1). Indirect recursion is when a function calls another function, which eventually calls the first function back, such as two functions A and B, where function A calls function B, and function B calls function A back.