Starting Out with Java: From Control Structures through Data Structures (4th Edition) (What's New in Computer Science)
Starting Out with Java: From Control Structures through Data Structures (4th Edition) (What's New in Computer Science)
4th Edition
ISBN: 9780134787961
Author: Tony Gaddis, Godfrey Muganda
Publisher: PEARSON
Expert Solution & Answer
Book Icon
Chapter 21, Problem 1FTE

Explanation of Solution

Given program code:

//Return the number of nodes in a binary tree

int Nodecount (Node tree) //Line 1

{ //Line 2

    //Declare a variable to get the number of nodes

    int count = 0; //Line 3

    //Check if tree is not equal to null

    if (tree != null) //Line 4

    { //Line 5

        //Increment the value of count

        count++; //Line 6

//Call the function recursively by passing the left sub tree

        NodeCount(tree.left); //Line 7

//Call the function recursively by passing the right sub tree

        NodeCount(tree.right); //Line 8

    } //Line 9

    //Return the value of count

    return count;//Line 10

}//Line 11

The above program code snippet is used to find the number of nodes present in the binary tree.

Error in the program code:

The statements inside the “if” condition does not use the returned values from the recursive calls. The lines from “Line 6” to “Line 10” should be changed and the modified snippet is given below...

Blurred answer
Students have asked these similar questions
Why investing in skills and technology is a critical factor in the financial management aspect of system projects.
why investing in skills and technology is a critical factor in the financial management aspect of systems projects.
Why are requirements changing a significant source of risks in system projects?
Knowledge Booster
Background pattern image
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
New Perspectives on HTML5, CSS3, and JavaScript
Computer Science
ISBN:9781305503922
Author:Patrick M. Carey
Publisher:Cengage Learning
Text book image
C++ Programming: From Problem Analysis to Program...
Computer Science
ISBN:9781337102087
Author:D. S. Malik
Publisher:Cengage Learning
Text book image
Systems Architecture
Computer Science
ISBN:9781305080195
Author:Stephen D. Burd
Publisher:Cengage Learning
Text book image
EBK JAVA PROGRAMMING
Computer Science
ISBN:9781337671385
Author:FARRELL
Publisher:CENGAGE LEARNING - CONSIGNMENT
Text book image
Programming Logic & Design Comprehensive
Computer Science
ISBN:9781337669405
Author:FARRELL
Publisher:Cengage
Text book image
C++ for Engineers and Scientists
Computer Science
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Course Technology Ptr