Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Create an EmployeeLinkedList class. However, instead of generic Link class for the link objects, you should use objects created from an Employee class as the

Create an EmployeeLinkedList class. However, instead of generic Link class for the link objects, you should use objects created from an Employee class as the objects stored in the list. The Employee class represents an employee at a company. It should have instance variables for the employee's first name, last name, id number (use an integer), date of birth, and rate of pay. Also, any other variable(s) needed to make an Employee object work in a linked list should be part of the Employee class. Give your EmployeeLinkedList class a "find" method that takes an integer argument and returns an Employee object. The argument is used to search the list for an Employee object with a matching id number value. The method then returns a copy of the matching Employee object -- or a null if nothing is found. Note the emphasis I put on returning a copy of the Employee object from the "find" method. The two most likely ways to create a copy involve either overriding the "clone" method of the Employee class (it's inherited from the Object class) or using a copy constructor. Include an EmployeeListDriver class in your project. It should test the "find" method.

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_2

Step: 3

blur-text-image_3

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

T Sql Window Functions For Data Analysis And Beyond

Authors: Itzik Ben Gan

2nd Edition

0135861446, 978-0135861448

More Books

Students also viewed these Databases questions

Question

What are interim financial statements and why are they issued?

Answered: 1 week ago

Question

(c) What is the resolution of this design?

Answered: 1 week ago