Using the following definition (List.h file) for a list, implement the member fu
ID: 3664365 • Letter: U
Question
Using the following definition (List.h file) for a list, implement the member functions (methods) for the List class and store the implementation in a List.cpp file. Use a linked list to implement the list. Write the client code (the main method and other non-class methods) and put in file main.cpp. Your client code should be menu driven using the following menu options: Insert Delete Display Smallest Largest Range Exit Insert a new value on the end of the list. Delete a number specified by the user from the list, if the number is in the list. Displayed in the list of numbers. Find and display the smallest value in the list. Find and display the largest value in the list. Compute and display the range of the values in the list. Exits the program.Explanation / Answer
Write a switch case for menu embed the following individual codes.
Insertion :
2)Delete:
3)Display:
4) Smallest Value:
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.