Home » Java programming language

Java LinkedList boolean removeLastOccurrence(Object o) method with Example

Java LinkedList boolean removeLastOccurrence(Object o) method: Here, we are going to learn about the boolean removeLastOccurrence(Object o) method of LinkedList class with its syntax and example.
Submitted by Preeti Jain, on June 25, 2019

LinkedList boolean removeLastOccurrence(Object o) method

  • This method is available in package java.util.LinkedList.removeLastOccurrence(Object o).
  • This method is used to remove the last occurrence of the specified object from the linked list and when we traverse LinkedList from beginning to end (Head to Tail).

Syntax:

    boolean removeLastOccurrence(Object o){
    }

Parameter(s):

We can pass only one object as a parameter in the method and that object will remove the last occurrence of the specified object from the linked list.

Return value:

The return type of this method is boolean that means this method returns true after execution.

Java program to demonstrate example of LinkedList removeLastOccurrence() method

Case 1: How boolean removeLastOccurrence(Object o) method works without duplicate objects in the LinkedList?

import java.util.LinkedList;

public class LinkList {
    public static void main(String[] args) {
        LinkedList list = new LinkedList();
        // use add() method to add few elements in the list 
        list.add(10);
        list.add(20);
        list.add(30);
        list.add(40);
        list.add(50);

        //  Current list Output
        System.out.println("The Current list is:" + list);

        // Remove one element of index 1(i.e 20) from the list 
        list.removeLastOccurrence(20);

        //  New list Output 
        System.out.println("The new List is:" + list);
    }
}

Output

D:\Programs>javac LinkList.java

D:\Programs>java LinkList
The Current list is:[10, 20, 30, 40, 50]
The new List is:[10, 30, 40, 50]

Case 2: How boolean removeLastOccurrence(Object o) method works with duplicate objects in the list?

import java.util.LinkedList;

public class LinkList {
    public static void main(String[] args) {
        LinkedList list = new LinkedList();
        // use add() method to add few elements in the list 
        list.add("J");
        list.add("A");
        list.add("V");
        list.add("A");
        list.add("L");
        list.add("A");
        list.add("N");
        list.add("G");
        list.add("U");
        list.add("A");
        list.add("G");
        list.add("E");

        //  Current list Output
        System.out.println("The Current list is:" + list);

        // Remove one elements from the list and here A comes four times in a list 
        // so it will remove last occurrence of  A will remove from the list 

        list.removeLastOccurrence("A");

        //  New list Output 
        System.out.println("The new List is:" + list);
    }
}

Output

D:\Programs>javac LinkList.java

D:\Programs>java LinkList
The Current list is:[J, A, V, A, L, A, N, G, U, A, G, E]
The new List is:[J, A, V, A, L, A, N, G, U, G, E]



Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.