Question: C++ Linked List In this program you will create a linked list. Each node will have the following information: Employee Number 1.First name 2.Last Name

C++ Linked List

In this program you will create a linked list. Each node will have the following information:

Employee Number

1.First name

2.Last Name

3.Age

This program will have the following functions:

1. Display List

- List the entries in the nodes.

2. Add Employees

- Create new nodes in the list

3. Change Employee info

- Edit and change information in a node in the list

- User must specify the Employee number

- Produce a meaningful message if the employee number is not in the list

4. Delete Employees :

- remove the node from the list.

- Do not forget that if a node is removed from the middle you must reconnect the prior node with the next node.

5. Count List :

- This function will count the number of items in a linked list NOT including the Head. Display the following message:

NNNN has a linked list with ### entries.

where NNNN is your first and last name and ### is the number of entries

e.g. John Smith has a linked list with 4 entries.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!