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
node<int>* doo(node<int>*root, int x){ if(root==0 || root->data==x) return root; if(root->data<x) return doo(root->right,x); else return doo(root->left,x);} what is this code do? a. Search about an item in the binary tree b. search about the item that is minimum and maximum in the same time in the binary tree c. search about an item in the doubly linked list d. search about a leaf item in the binary tree
In java: binary tree Write a method called size(). This method will calculate the total number of nodes the tree has.
Java -   Write pseudocode for the binary tree method isLeaf() that returns true if the node is a leaf and false if not.
Knowledge Booster
Background pattern image
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education