Implement a method called reverse (public static void reverse(LinkedList strings)) that takes in a LinkedList of strings and reverses each entry in the linked list. (No main is required for this question; the output below comes from us testing the method from another class.) Do not use Collections.reverse() to reverse the elements of the linked list. [5 points] See the attached ListReverser.java for the code in the driver/main method we are using to run your reverse method. You need to complete the reverse method inside this class.
Reviews
There are no reviews yet.