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 / 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
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
Get step-by-step solutions from verified subject matter experts
