logo CodeStepByStep logo

removeAll

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<E> class as defined below:

public class LinkedList<E> {
    private ListNode front;   // null for an empty list
    ...
}
Partial class: Write code that will become part of an existing class as described. You do not need to write the complete class, just the portion described in the exercise.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.