Reimplement all the methods of the linked list class using a noncircular linked list Compute and tabulate the running times of the constructor and all the methods of this new class. code example
Example: java linked list functions
import java.util.LinkedList;
LinkedList<Integer> myList = new LinkedList<Integer>();
myList.add(0);
myList.remove(0);//Remove at index 0
myList.size();
myList.get(0);//Return element at index 0