EBK STARTING OUT W/JAVA:...DATA...
EBK STARTING OUT W/JAVA:...DATA...
4th Edition
ISBN: 9780134757179
Author: GADDIS
Publisher: PEARSON CO
Expert Solution & Answer
Book Icon
Chapter 21, Problem 4AW

Explanation of Solution

Binary search tree:

  • Binary search tree is a tree in which the nodes are sorted in the semantic order and it has the shape of binary tree.
  • Nodes in the binary search tree can have zero, one, or two children.
  • In a binary search tree, any node value is greater than the left sub tree and lesser than the right sub tree.
    • Node without children is called a leaf or end node.
    • A node that does not have a superior node is called a root node.
    • Root node is the starting node.
  • The binary search will be performed until finding a search node or reaching the end of the tree.

Algorithm to count the number of leaf in a binary tree:

Step 1: Define a function named “leafCount” with the parameter “btree”.

Step 2: Check if “btree” is equal to null. If it is true, then return 0.

Step 3: Check if “btree.left” is equal to null and “btree.right” is equal to null. If this condition is true, then return 1.

Step 4: If both the condition fails, then return the summation of count of left tree and right tree by calling the function “leafCount ()” recursively...

Blurred answer
Students have asked these similar questions
Write a method isBST() that takes a Node as argument and returns true if the argument node is the root of a binary search tree, false otherwise.Hint : This task is also more difficult than it might seem, because the order in which youcall the methods in the previous three exercises is important.Write a method isBST() that takes a Node as argument and returns true if the argument node is the root of a binary search tree, false otherwise.Hint : This task is also more difficult than it might seem, because the order in which youcall the methods in the previous three exercises is important.
To class Tree, add the following method public int countOdds(){ return countOddNodes(root); } Write the recursive method countOddNodes(Node n) which returns how many nodes in the tree where thier keys are odd number. Attach File Browse Local Files Browse Content Collection
Write a recursive buildBinaryTree method that builds a new binary tree from the contents of an arraythat contains integers. Use the following class definition for a node in a binary tree:class BinaryNode{int element;BinaryNode left;BinaryNode right;}Hint: Take one item from the array and insert it as the root of the tree. Divide theremaining items in half and insert one half in the right subtree and the other half in theleft subtree of the root node by calling the method recursively with the relevant arrayindices.Note: You have to explain your method by means of inline comments or by including apseudo-code version of this method in comments. Write a method oddEntries that returns the number of odd integers contained in a binarytree where the element type is int. This method is called with a link to the root node ofthe tree.Note: You have to explain your method by means of inline comments or by including apseudo-code version of this method in comments. Write a Java program that:a. Reads…
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