Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Question 1 Create a binary tree class of Family Data, containing the following information as data members: Class Family_Data { private: Int age Float height
Question 1
Create a binary tree class of Family Data, containing the following information as data members:
Class Family_Data
{
private:
- Int age
- Float height
- String name
- Family_Data * LChild
- Family_Data * RChild
Public:
// your member functions;
}
Tasks:
- Show a menu to the user (insert, delete, update, search, display, exit).
- Test your program intensively using main function.
Note: The decision to make a new node in left/right subtree depends upon the alphabetical order of names.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started