Friday, September 5, 2025
HomeLanguagesJavaLinkedList indexOf() method in Java

LinkedList indexOf() method in Java

The Java.util.LinkedList.indexOf(Object element) method is used to check and find the occurrence of a particular element in the list. If the element is present then the index of the first occurrence of the element is returned otherwise -1 is returned if the list does not contain the element.

Syntax:

LinkedList.indexOf(Object element)

Parameters: The parameter element is of the type LinkedList. It specifies the element whose occurrence is needed to be checked in the LinkedList.

Return Value: The method returns the index or position of the first occurrence of the element in the list else -1 if the element is not present in the list. The returned value is of integer type.

Below program illustrate the Java.util.LinkedList.indexOf() method:




// Java code to illustrate indexOf()
import java.io.*;
import java.util.LinkedList;
  
public class LinkedListDemo {
   public static void main(String args[]) {
  
      // Creating an empty LinkedList
      LinkedList<String> list = new LinkedList<String>();
  
      // Use add() method to add elements in the list
      list.add("Geeks");
      list.add("for");
      list.add("Geeks");
      list.add("10");
      list.add("20");
  
      // Displaying the list
      System.out.println("LinkedList:" + list);
        
      // The first position of an element 
      // is returned
      System.out.println("The first occurrence of Geeks is at index:" 
                                              + list.indexOf("Geeks"));
      System.out.println("The first occurrence of 10 is at index: "  
                                               + list.indexOf("10"));
  
   }
}


Output:

LinkedList:[Geeks, for, Geeks, 10, 20]
The first occurrence of Geeks is at index: 0
The first occurrence of 10 is at index: 3
RELATED ARTICLES

Most Popular

Dominic
32265 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6634 POSTS0 COMMENTS
Nicole Veronica
11801 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11863 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6701 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS