Question: Write a C++ program which allows the showMenu() function below to work. You should add (menu option #1) at least 5 items in the BST,

Write a C++ program which allows the showMenu() function below to work. You should add (menu option #1) at least 5 items in the BST, before you select any other options. Run you program to show all options on the menu work correct

int showMenu( )

{

do

{

cout<<"================================="<

cout<<7. Quit<

cout<

cin>>selection;

} while ( (selection < 1) || (selection > 7) );

return selection;

}

Must use binaryTree data structure

Be sure to include comments

Use meaningful identifier names (constants where appropriate)

Do not work together; no two people should have identical work!?!?

Turn in .cpp and .h files

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!