Question: 450 Lt. Create a Linkit X438: LinkedList - Create a LinkedList Complete a custom singly-Linked Linkedlist to hold generic objects. The list will use nodes
450 Lt. Create a Linkit X438: LinkedList - Create a LinkedList Complete a custom singly-Linked Linkedlist to hold generic objects. The list will use nodes called LinearNodes, which have methods getNext setNext.getElem, and setElem. It includes methods for adding an element to a specific index or simply to the end, removing or replacing elements at specific indexes. peeking at an element without removing it, and returning the size of the list. NEEDS TESTING Your Answer: Feedback i private class Linkedlist> private int size; private Linearhode
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
