w3resource

Java: Get the first and last occurrence of the specified elements in a linked list

Java Collection, LinkedList Exercises: Exercise-10 with Solution

Write a Java program to get the first and last occurrence of the specified elements in a linked list.

Sample Solution:-

Java Code:

import java.util.LinkedList;
import java.util.Iterator;
  public class Exercise10 {
  public static void main(String[] args) {
    // create an empty linked list
     LinkedList<String> l_list = new LinkedList<String>();
   // use add() method to add values in the linked list
          l_list.add("Red");
          l_list.add("Green");
          l_list.add("Black");
          l_list.add("Pink");
          l_list.add("orange");
      
      // print original list
   System.out.println("Original linked list:" + l_list);  
 
   // Find first element of the List
    Object first_element = l_list.getFirst();
    System.out.println("First Element is: "+first_element);
 
    // Find last element of the List
    Object last_element = l_list.getLast();
    System.out.println("Last Element is: "+last_element);
 }
}

Sample Output:

Original linked list:[Red, Green, Black, Pink, orange]                 
First Element is: Red                                                  
Last Element is: orange

Pictorial Presentation:

Java Collection Linked-list: Get the first and last occurrence of the specified elements in a linked list.

Flowchart:

Flowchart: Get the first and last occurrence of the specified elements in a linked list

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Insert some elements at the specified position into a linked list.
Next: Display the elements and their positions in a linked list.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.