Description
General Description: For this project, you will write a program that keeps track of inventory for a camera store. The data is located in the file Inventory.txt. (NOTE: this is NOT the same data file that was used for the lab, although it is similar) While the program is running, the information should be stored in a linked list.
- The information for each item will be stored in a struct
- The definition will be in a separate file called item.h
- The total inventory will be stored in a linked list
- The definition of the list class will be in a file called linkedList.h
- The program should be able to perform the following functions
- The program will run until the user chooses an option to exit
- The list is not in alphabetical order, so you will need to put it in order.
- Whenever you change a name or if you add an item, the list must stay in order.
- When you are done, the list will be output to a file called newlist.txt
- You MAY use any code that I have given you, although it will need to be modified.
- You must have internal and external documentation:
See the handout on Documentation Standards
- You will demonstrate your working project to me at an appointed time
- You will hand in a copy of all your files, along with the documentation