Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

1) Objective : Build a c++ program to solve a problem using linked list OR linea

ID: 3833894 • Letter: 1

Question

1) Objective :

Build a c++ program to solve a problem using linked list OR linear list. The program

shall have all basic list operations including searching and sorting.

2) Instruction :

a) Write a program to represent any record keeping system (e.g Stock, Students

Records, Employee Records, Song List, Video Rental, etc ) using list concept.

Your program should have the following functionality:

Login & Password

Add Record

Delete Record

Display Records

Search Record

Sort Record

b) The record should have more than one data field e.g Student Record (Name, ID,

Age, GPA, etc.)

c) Your program should have menu display to allow user control. Examples of menu

items :

Add new record

Delete record

Display record by name

Display record by xxxx

Monthly Sales Report

Sales by product

Search product by ID

Sort product by ID

Exit from program

  

Explanation / Answer

As we know that a linked list is a linear collection of data elements,called nodes, each pointing to the next node by means of a pointer.

I'm writing a code of implementing queue using linked list

Sample Output: