Problem: Create an employee Record Management system using linked list in ( C++) that can perform the following operatio
Posted: Sat May 14, 2022 6:55 pm
Problem: Create an employee Record Management system using
linked list in ( C++)
that can perform the following operations:
• Insert employee record
• Delete employee record
• Update employee record
• Show employee
• Search employee
• Update salary
The employee record should contain the following items
• Name of Employee
• ID of Employee
• First day of work
• Phone number of the employee
• Address of the employee
• Work hours
• Salary
Approach:
With the basic knowledge of operations on Linked Lists like
insertion, deletion of elements
in the Linked list, the employee record management system can be
created. Below are the
functionalities explained that are to be implemented:
Check Record: It is a utility function of creating a record it
checks before insertion
that the Record Already Exist or not. It uses the concept of
checking for a Node with given
Data in a linked list.
Create Record: It is as simple as creating a new node in the Empty
Linked list or
inserting a new node in a non-Empty linked list.
Smart Search Record: Search a Record is similar to searching for a
key in the linked
list. Here in the employee record key is the ID number as a unique
for every employee.
Delete Record: Delete Record is similar to deleting a key from a
linked list. Here the
key is the ID number. Delete record is an integer returning
function it returns -1 if no such
linked list in ( C++)
that can perform the following operations:
• Insert employee record
• Delete employee record
• Update employee record
• Show employee
• Search employee
• Update salary
The employee record should contain the following items
• Name of Employee
• ID of Employee
• First day of work
• Phone number of the employee
• Address of the employee
• Work hours
• Salary
Approach:
With the basic knowledge of operations on Linked Lists like
insertion, deletion of elements
in the Linked list, the employee record management system can be
created. Below are the
functionalities explained that are to be implemented:
Check Record: It is a utility function of creating a record it
checks before insertion
that the Record Already Exist or not. It uses the concept of
checking for a Node with given
Data in a linked list.
Create Record: It is as simple as creating a new node in the Empty
Linked list or
inserting a new node in a non-Empty linked list.
Smart Search Record: Search a Record is similar to searching for a
key in the linked
list. Here in the employee record key is the ID number as a unique
for every employee.
Delete Record: Delete Record is similar to deleting a key from a
linked list. Here the
key is the ID number. Delete record is an integer returning
function it returns -1 if no such