Write a method removeLast
that could be added to the LinkedIntList
class that removes the last occurrence (if any) of a given integer from the list of integers. For example, suppose that a variable named list
stores this sequence of values:
[3, 2, 3, 3, 19, 8, 3, 43, 64, 1, 0, 3]
If we repeatedly make the call of list.removeLast(3)
;, then the list will take on the following sequence of values after each call:
after first call: [3, 2, 3, 3, 19, 8, 3, 43, 64, 1, 0]
after second call: [3, 2, 3, 3, 19, 8, 43, 64, 1, 0]
after third call: [3, 2, 3, 19, 8, 43, 64, 1, 0]
after fourth call: [3, 2, 19, 8, 43, 64, 1, 0]
after fifth call: [2, 19, 8, 43, 64, 1, 0]
after sixth call: [2, 19, 8, 43, 64, 1, 0]
Notice that once we reach a point where no more 3's occur in the list, calling the method has no effect.
Assume that we are adding this method to the LinkedIntList
class as seen in lecture and as shown below. You may not call any other methods of the class to solve this problem and your method cannot change the contents of the list.
public class LinkedIntList {
private ListNode front; // null for an empty list
...
}