CSC 343 - Data Structures
Dr. R. M. Siegfried
Assignment #6 - A linked list to manage inventory
Due Wednesday, October 26, 2016
You are maintaining an inventory, with each item's data stored in a node
on a linked list 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]