Question: Part 1 : Java implementation of a Linked List For this part, you will be provided a set of skeleton classes for you to implement
Part : Java implementation of a Linked List
For this part, you will be provided a set of skeleton classes for you to implement a singly linked list of
type int. You will also be provided a minimal set of test cases. You are encouraged to augment the test
suite.
Import the eclipse project Assignmentzip into your workspace. The package includes a complete Node
class as well as a test suite MyLinkedListTest. A skeleton MyLinkedList class is provided with the
following methods that need to be implemented:
Points Method
public MyLinkedList constructor
public void addint data
public void addint data
public void addMyLinkedList l
public int getint index
public void removeint data
public boolean containsint needle
public static boolean equalsMyLinkedList l MyLinkedList l
public boolean equalsMyLinkedList l
public boolean equalsObject o
public boolean isEmpty
public int findMinIterative
public int findMinRecursive
public int size
public String toString
Total
Note that each of the above method are thoroughly commented in the included assignment package
and that additional methods may be required. Additionally, you may assume that methods are provided
valid input.
To submit this part of the assignment, you are required to export your project as an Archive ZIP file and
compress it using the ZIP format for upload in MyCourses. See instructions posted on MyCourses for
importing and exporting Eclipse Projects.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
