Question: 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
Get step-by-step solutions from verified subject matter experts
