w3resource

Java: Insert the specified element at the front of a linked list

Java Collection, LinkedList Exercises: Exercise-7 with Solution

Write a Java program to insert the specified element at the front of a linked list.

Sample Solution:-

Java Code:

import java.util.LinkedList;
  public class Exercise7 {
  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");
     System.out.println("Original linked list:" + l_list);    
  // Add an element to front of LinkedList
     l_list.offerFirst("Pink");
     System.out.println("Final linked list:" + l_list);  
 }	
}

Sample Output:

Original linked list:[Red, Green, Black]                               
Final linked list:[Pink, Red, Green, Black]

Pictorial Presentation:

Java Collection Linked-list: Insert the specified element at the front of a linked list.

Flowchart:

Flowchart: Insert the specified element at the front of a linked list.

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Insert elements into the linked list at the first and last position.
Next: Insert the specified element at the end of 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.