Starting Out With C++: Early Objects (10th Edition)
Starting Out With C++: Early Objects (10th Edition)
10th Edition
ISBN: 9780135235003
Author: Tony Gaddis, Judy Walters, Godfrey Muganda
Publisher: PEARSON
bartleby

Concept explainers

Question
Book Icon
Chapter 19, Problem 7PC
Program Plan Intro

Tree Copy Constructor

Program Plan:

  • Define a class BTreeNode to create nodes for binary search tree items.
    • Include all the required header files.
    • Initialize a value to the node, and set the left child of node to leftp and right child of node to rightp.
  • Define a class to create a Binary Search Tree.
    • Create a copy constructor BST::BST(BST &t)that copies all the items present in the binary search tree.
  • Create a destructor BST & BST::operator=(BST &t)for assignment operator.
    • Create a function void BST::destroyTree that deallocates all storage for nodes of a tree using the destructor.
  • Create a function int width that returns width of the tree.
    • Create a function bool search to search a particular item in tree.
  • Create a function leafCounter that counts no. of leaves present in a level.
    • Create function void insert to insert nodes into the tree.
  • Create a function void inorder to sort items in inorder traversal.
  • Declare the main function.
    • Prompt the user to enter 5 numbers to be inserted into tree.
  • Sort the items present in the tree in inorder traversal and print the items.
    • Copy all the items of the tree elements.
  • Prompt the user to enter a new value to be entered into tree.
    • Print the items present in new tree in order traversal.
  • Print the items present in original tree using copy constructor.
    • Print the items present in the new tree by reassigning the values of the old tree.

Blurred answer
Students have asked these similar questions
Complete the Binary Search Tree class using C++ program: 1. Implement member function for deleteNode 2. Implement member functions for Pre-order and Post-order traversal 3. Develop the menu for different tasks as shown in sample output. Sample Output: -
Complete the Binary Search Tree class: 1. Implement member function for deleteNode 2. Implement member functions for Pre-order and Post-order traversal 3. Develop the menu for different tasks as shown in sample output. Sample Output: -
F# Exercise, BST write the following binary search tree functions in F# for a binary search tree of integers. Use the following type definition for a BST (copy this into your solution):  F# system functions (such as min) and the method in the List module such as List.map. are not allowed // Tree definition for problem: type BST =        | Empty        | TreeNode of int * BST * BST insert value tree: Inserts the value into the tree and returns the resulting tree. The resulting tree does NOT need to be balanced. If the value already exists in the tree, return the tree without inserting the value. search value tree: Returns true if the value is in the tree and false otherwise. count func tree: The parameter func is a Boolean function that takes a single parameter and returns true or false. The function tests the value of each node with func and returns the number of nodes that evaluate to true. evenCount tree: Returns the number of nodes that contain even integers. REQUIREMENT: This…
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
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