CSC 343 - Data Structures
Dr. R. M. Siegfried
Assignment #8 - A binary tree to manage inventory
Due Friday, November 18, 2016
You are maintaining an inventory, with each item's data stored in a node
on a binary search tree sorted by item code. Each node contains an item
code (6 characters), a description (up to 20 characters),
price and a quantity.
There are 4 legal transactions:
- Receiving - update the quantity and price of the item (if it's on the list) or
insert it on the list (if it isn't).
- Selling - sell x items for 110% of the price.
- Listing - List all of inventory
- Quit
[Back to the Assignments List]