Question: Design and write a complete test program to test if the MyLinkedList class in Listing 24.5 meets all requirements. Data from Listing 24.5 1 publ1c

Design and write a complete test program to test if the MyLinkedList class in Listing 24.5 meets all requirements.

Data from Listing 24.5

1 publ1c class MyLinkedList 1mplements MyList private Node head, tail: private int

size = 0: // Number of el ements in the list 2

4 ** Create an empty list/ public My LinkedList () { 6

7 8 * Create a list from an array of objects /

1 publ1c class MyLinkedList 1mplements MyList private Node head, tail: private int size = 0: // Number of el ements in the list 2 4 ** Create an empty list/ public My LinkedList () { 6 7 8 * Create a list from an array of objects / 10 public MyLinkedList(E[] objects) { for (int i = 0; i < objects.1length; i++) add (objects[i]): 11 12 13 14 1** Return the head element in the list / publ1c E getFirst() { 1f (size == 0) { return null1; 15 16 17 18 19 20 else {

Step by Step Solution

3.48 Rating (164 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

MyLinkedListjava public class MyLinkedList extends MyAbstractList private Node head tail Create a default list public MyLinkedList Create a list from an array of objects public MyLinkedListE objects s... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Introduction to Java Programming and Data Structure Questions!