I have gotten behind some in my programming class and any help would be appreciated. I am currently having a small issue with a linked list program and if you would like to help me troubleshoot that issue please pm me (I AM WILLING TO PAY THE REST OF MY FG FOR TROUBLESHOOTING HELP).
Also, I have a new assignment that I could use some assistance with. If you could, please point me in somewhat the right direction.
Write a menu driven, pointer variable implemented linked list processing program using your order entity class.
The menu should have these options:
(L)oad the list, in Description order, from a data file. The file name is input in the load procedure.
(S)ave the list to a data file.
(V)iew (display) the list on the screen.
(P)rint the list to a report file.
(R)etrieve a target order from the list.
(A)dd a new order to the list in VIN order.
(D)elete a target order from the list.
Create the list processing program described above. Run it using one of your order data files that is NOT already in alphabetica order by the description field.
Test your program with this sequence of menu operations.
- Load the list
- Display the list
- Print the list
- Retrieve several orders from the list
- Try to retrieve an order that is not in the list
- Add a new order to the list
- Print the list
- Add another new order to the list
- Print the list
- Retrieve one of your new orders from the list
- Try to add a order that is already in the list
- Delete a order from the list
- Print the list
- Save the list to a new data file
- Print the new data file.
Once again, any advice/suggestions would be much appreciated.