Question: I am currently learning about LinkedList, and need help completing this lab to make sure I am doing it correct. Any help is appreciated, and
I am currently learning about LinkedList, and need help completing this lab to make sure I am doing it correct. Any help is appreciated, and I will leave a positive review!

JavaLinkedList:
import java.util.LinkedList; import static java.lang.System.*; public class JavaLinkedList { private LinkedList
JavaLinkedListRunner:
import java.util.LinkedList; import static java.lang.System.*; public class JavaLinkedListRunner { public static void main ( String[] args ) { JavaLinkedList test = new JavaLinkedList(new int[]{4,5,6,7,8,9,10,11,12,13}); out.println(test); test = new JavaLinkedList(new int[]{24,75,86,37,82,94,111,82,43}); out.println(test); test = new JavaLinkedList(new int[]{0,4,5,2,1,4,6}); out.println(test); } }
A+ Computer Science LINKED LIST BASICS Lab Goal : This lab was designed to teach you more about a linked list. Lab Description : Write a program that demonstrates that you understand how to use the Java Linked List class. Files Needed :: Sample Data : 4 5 6 7 8 9 10 11 12 13 24 75 86 37 82 94 111 82 43 0 4 5 2 1 4 6 JavaLinkedList.java JavaLinkedListRunner.java Sample Output : SUM:: 85.0 AVERAGE:: 8.5 SMALLEST :: 4 LARGEST :: 13 SUM:: 634.0 AVERAGE:: 70.44444444444444 SMALLEST:: 24 LARGEST :: 111 SUM:: 22.0 AVERAGE :: 3.142857142857143 SMALLEST :: 0 LARGEST:: 6
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
