Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

C++

image text in transcribed

In this program you will create a linked list. Each node will have the following information: 1. Employee Number 2. First name 3. Last Name 4. Age This program will have the following functions: 1. Display List List the entries in the nodes. (5 points) 2. Add Employees Create new nodes in the list (10 points) Change Employee info Edit and change information in a node in the list (15 points) 3. User must specify the Employee number Produce a meaningful message if the employee number is not in the list a. b. 4. All numeric input must be validated (5 Points). Delete Employees (10 points): 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 (5 Points): 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 6. e.g. John Smith has a linked list with 4 entries

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Concepts

Authors: David M. Kroenke, David J. Auer

7th edition

133544621, 133544626, 0-13-354462-1, 978-0133544626

More Books

Students also viewed these Databases questions

Question

I Which of your reasons (if any) were not under your controli>

Answered: 1 week ago