Starting Out with C++: Early Objects (9th Edition)
Starting Out with C++: Early Objects (9th Edition)
9th Edition
ISBN: 9780134400242
Author: Tony Gaddis, Judy Walters, Godfrey Muganda
Publisher: PEARSON
bartleby

Concept explainers

bartleby

Videos

Textbook Question
Book Icon
Chapter 14, Problem 1RQE

What type of recursive function do you think would be more difficult to debug; one that uses direct recursion or one that uses indirect recursion? Why?

Expert Solution & Answer
Check Mark
Program Plan Intro

Recursive Function:

  • The function has ability to call itself is called recursion function.
  • It is a substitute method for reiteration.
  • It replaces the loop statements, so without loop statement it executes the algorithm codes a number of times.
  • Selection statement is used to make a decision for the execution of the recursion.
  • There are two types of recursive functions. They are:
    • Direct recursion
    • Indirect recursion

Direct recursion:

When a function calls itself repeatedly until the condition becomes false is called as direct recursion.

Example:

//method definition

void test()

{

    //call a function

    test();

}

Indirect recursion:

When a function calls another function which in turn calls the same calling function is called as indirect recursion.

Example:

//method definition

void test()

{

    //call a function

    test1();

}

//method definition

void test1()

{

    //call a function

    test();

}

Explanation of Solution

Recursion that is difficult to debug:

The recursion that is difficult to debug is “Indirect recursion”.

Justification:

  • Because, a function calls one function which is linked to another function.
  • Since, a function can make multiple calls to a function; it is difficult to track the flow control of function that is being processed within the code.

Therefore, “Indirect recursion” is difficult to debug when compared to direct recursion.

Want to see more full solutions like this?

Subscribe now to access step-by-step solutions to millions of textbook problems written by subject matter experts!
Students have asked these similar questions
solve and show the tree on paper
I need help to resolve the following activity
Modern life has been impacted immensely by computers. Computers have penetrated every aspect of oursociety, either for better or for worse. From supermarket scanners calculating our shopping transactionswhile keeping store inventory; robots that handle highly specialized tasks or even simple human tasks,computers do much more than just computing. But where did all this technology come from and whereis it heading? Does the future look promising or should we worry about computers taking over theworld? Or are they just a necessary evil? Provide three references with your answer.
Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
C++ Programming: From Problem Analysis to Program...
Computer Science
ISBN:9781337102087
Author:D. S. Malik
Publisher:Cengage Learning
Text book image
Programming Logic & Design Comprehensive
Computer Science
ISBN:9781337669405
Author:FARRELL
Publisher:Cengage
Text book image
New Perspectives on HTML5, CSS3, and JavaScript
Computer Science
ISBN:9781305503922
Author:Patrick M. Carey
Publisher:Cengage Learning
Text book image
Systems Architecture
Computer Science
ISBN:9781305080195
Author:Stephen D. Burd
Publisher:Cengage Learning
Text book image
C++ for Engineers and Scientists
Computer Science
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Course Technology Ptr
Text book image
CMPTR
Computer Science
ISBN:9781337681872
Author:PINARD
Publisher:Cengage
Computational Software for Intelligent System Design; Author: Cadence Design Systems;https://www.youtube.com/watch?v=dLXZ6bM--j0;License: Standard Youtube License