Question: Objective: Learning linked list... C++ ===> (Using Structures) Problem Specification: An employer would like to maintain a linked list for employees, the data stored is
Objective: Learning linked list... C++ ===> (Using Structures)
Problem Specification:
An employer would like to maintain a linked list for employees, the data stored is an employee
number (a positive integer), and a yearly salary (a float). Would like you as the programmer to
define the required classes in header files, and the methods in implementation files.
The methods used are:
Insert: Which inserts elements at the beginning of the list, which is the most recent input
is at the beginning of the list.
Remove: which deletes the last element in the list.
Display: a recursive function that prints the elements of the list, last to first.
Clear: a function that deletes every node from the list and leaves the list empty.
Criteria:
Menu is used to display options and calls methods.
Guards are used.
insert performs its task correctly.
remove performs its task correctly.
display performs it task correctly.
display is recursive.
clear performs it task correctly.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
