Write a c program to implement a menu-driven program for


Assignment: Binary Search Tree- Data structure U5

Write a C++ program to implement a menu-driven program for managing a software store using binary search trees. When the program starts, all information about the software packages should be stored in a file named software. The information includes the code, name, version, and price of each software package. Each field will be on a separate line.

When the program starts, it should automatically create a binary search tree with one node corresponding to one software package, and it should include the code of the package. The program should allow the file and the tree to be updated when a new software package arrives to the store and when some packages are sold. Consider the following:

• New packages should be inserted to the tree and at the end of the file.
• Sold packages should be deleted from the file and from the tree.

Test your program using the following example:

• Start with the following content in the file software:

o 12
o Photoshop
o CS5
o 500
o 22
o Office
o 2010
o 150
o 34
o Visual Studio
o 2010
o 600

• Add the following item to the file and tree:

o 15
o Norton Security
o 2014
o 50

• Delete software package with code from the file and the tree.

Solution Preview :

Prepared by a verified Expert
C/C++ Programming: Write a c program to implement a menu-driven program for
Reference No:- TGS02287723

Now Priced at $40 (50% Discount)

Recommended (91%)

Rated (4.3/5)