Question: Build a class called LinkedListRunner with a main method that instantiates a LinkedList . Add the following strings to the linked list: aaa bbb

Build a class called LinkedListRunner with a main method that instantiates a LinkedList . Add the following strings to the linked list: aaa bbb CCC ddd eee fff ggg hhh iii Build a ListIterator and use it to walk sequentially through the linked list using hasNext and next, printing each string that is encountered. When you have printed all the strings in the list, use the has Previous and previous methods to walk backwards through the list. Along the way, examine each string and remove all the strings that begin with a vowel. When you arrive at the beginning of the list, use hasNext and next to go forward again, printing out each string that remains in the linked list.
Step by Step Solution
3.48 Rating (161 Votes )
There are 3 Steps involved in it
Heres the implementation of the LinkedListRunner class import javautilLinkedList import javautilList... View full answer
Get step-by-step solutions from verified subject matter experts
