Question: O removeAll Language/Type: Java generics implementing instance methods Linked List Related Links: LinkedList.java Author: Marty Stepp (on 2012/02/29) Write a method removeAll that removes all

O removeAll Language/Type: Java generics implementing instance methods Linked List Related Links: LinkedList.java Author: Marty Stepp (on 2012/02/29) Write a method removeAll that removes all occurrences of a particular value. For example, if a variable list contains the following values: [to, be, or, not, to, be] The call of list. removeAll("be"); would remove all occurrences of the value "be" from the list, yielding the following values: [to, or, not, to] If the list is empty or the value doesn't appear in the list at all, then the list should not be changed by your method. You must preserve the original order of the elements of the list. The example shown is a list of strings, but this is a generic linked list class that can store any type of objects. Assume that you are adding this method to the LinkedList
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
