Write a program in C++ for binary tree that implement following methods: Create(P, X) : P is location of parent of node which is to be created, X is either Left or Right. Delete(N): N is location of node which is to be deleted. If the node to be deleted is an internal node, fill the space vacated by deleted node by moving the last node (rightmost node at the last level) to the vacant space. Display() : display the entire binary tree (information and location of each node, location of its left and right children) Search(v): v is some value, search all node(s) n having value equal to v and print the location of those node(s). Also print the location of parent of those node(s). Also, implement the inorder, preorder and postorder traversal of binary tree. Your program should implement two classes. One class should use sequential representation. Second class should use linked representation using arrays.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter18: Stacks And Queues
Section: Chapter Questions
Problem 21SA
icon
Related questions
Question
I need the answer as soon as possible
Write a program in C++ for binary tree that
implement following methods:
Create(P, X) : P is location of parent of node
which is to be created, X is either Left or Right.
Delete(N): N is location of node which is to be
deleted. If the node to be deleted is an internal
node, fill the space vacated by deleted node by
moving the last node (rightmost node at the last
level) to the vacant space.
Display() : display the entire binary tree
(information and location of each node, location
of its left and right children)
Search(v): v is some value, search all node(s) n
having value equal to v and print the location of
those node(s). Also print the location of parent
of those node(s).
Also, implement the inorder, preorder and
postorder traversal of binary tree.
Your program should implement two classes.
One class should use sequential representation.
Second class should use linked representation
using arrays.
Transcribed Image Text:Write a program in C++ for binary tree that implement following methods: Create(P, X) : P is location of parent of node which is to be created, X is either Left or Right. Delete(N): N is location of node which is to be deleted. If the node to be deleted is an internal node, fill the space vacated by deleted node by moving the last node (rightmost node at the last level) to the vacant space. Display() : display the entire binary tree (information and location of each node, location of its left and right children) Search(v): v is some value, search all node(s) n having value equal to v and print the location of those node(s). Also print the location of parent of those node(s). Also, implement the inorder, preorder and postorder traversal of binary tree. Your program should implement two classes. One class should use sequential representation. Second class should use linked representation using arrays.
Expert Solution
steps

Step by step

Solved in 2 steps with 10 images

Blurred answer
Knowledge Booster
Types of trees
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
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning