Answered step by step
Verified Expert Solution
Question
1 Approved Answer
C++ Question 1 Create a binary tree class of Family Tree, containing the following information as data members: Class Family_Tree { private: 1. Int child1_age
C++
Question 1 Create a binary tree class of Family Tree, containing the following information as data members:
Class Family_Tree {
private:
1. Int child1_age
2. Int child2_age
3. Float child1_height
4. Float child1_height
5. String child1_name
6. String child2_name
7. Family_Tree* LChild
8. Family_Tree* RChild Public: // your member functions; }
Tasks: 1. Show a menu to the user (insert, delete, update, search, display, exit).
2. Test your program intensively using main function.
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