Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Design a system to keep track of employee data. The system should keep track of an employee's name, ID number and hourly pay rate in

Design a system to keep track of employee data. The system should keep track of an employee's name, ID number and hourly pay rate in a class called Employee. This data is stored in a file (user selectable) with the id number, hourly pay rate, and the employee's full name (example):

17 5.25 Daniel Katz

18 6.75 John F. Jones

Additionally we would like to be able to print payroll information from data in a different file. The data is the employee's id number and a number of hours that they worked (example):

17 40

18 20

18 20

As you see we can have the same number listed twice in which case that person should be paid the sum of the numbers (John Jones did 40 hours work, but it's listed as 20+20).

You should start by reading in the first file and storing the data as objects in a linked list. You will need to create the linked list class and the Employee data class. Create a own doubly-linked list class, you cannot use the STL list class. The Linked list does not need to be templated.

Once you have read in the information from the first file, read in the second file. Ultimately we would like to print payroll information based on the hourly wage from the first file multiplied by the number of times an employee worked in the second file. The output must be in sorted (descending; so the person who gets paid most prints first) order in the form of:

*********Payroll Information********

Daniel Katz, $270

John F. Jones, $210

*********End payroll**************

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

Financial management theory and practice

Authors: Eugene F. Brigham and Michael C. Ehrhardt

12th Edition

978-0030243998, 30243998, 324422695, 978-0324422696

Students also viewed these Programming questions