w3resource

Java: Display the elements and their positions in a linked list


11. Display Elements and Positions

Write a Java program to display elements and their positions in a linked list.

Sample Solution:-

Java Code:

import java.util.LinkedList;
import java.util.Iterator;
  public class Exercise1 {
  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);  
  for(int p=0; p < l_list.size(); p++)
   {
      System.out.println("Element at index "+p+": "+l_list.get(p));
    } 
 }
}

Sample Output:

Original linked list:[Red, Green, Black, Pink, orange]                 
Element at index 0: Red                                                
Element at index 1: Green                                              
Element at index 2: Black                                              
Element at index 3: Pink                                               
Element at index 4: orange

Pictorial Presentation:

Java Collection Linked-list: Display the elements and their positions in a linked list.

Flowchart:

Flowchart: Display the elements and their positions in a linked list

For more Practice: Solve these Related Problems:

  • Write a Java program to iterate over a linked list and print each element along with its position using a loop counter.
  • Write a Java program to implement a recursive function that prints each element and its position in a linked list.
  • Write a Java program to convert a linked list to an array and then print each element's index and value.
  • Write a Java program to use Java 8 streams to zip indices with linked list elements and print them.

Go to:


PREV : Get First and Last Occurrence.
NEXT :> Remove Specified Element.

Java Code Editor:

Contribute your code and comments through Disqus.

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.