w3resource

Java: Insert some elements at the specified position into a linked list

Java Collection, LinkedList Exercises: Exercise-9 with Solution

Write a Java program to insert some elements at the specified position into a linked list.

Sample Solution:-

Java Code:

import java.util.LinkedList;
public class Exercise9 {
 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");

  // print original list
  System.out.println("Original linked list:" + l_list);

  // create a new collection and add some elements

  LinkedList <String> new_l_list = new LinkedList <String> ();
  new_l_list.add("White");
  new_l_list.add("Pink");

  // Add the collection in the second position of the existing linked list
  l_list.addAll(1, new_l_list);

  // print the new list
  System.out.println("LinkedList:" + l_list);
 }
}

Sample Output:

Original linked list:[Red, Green, Black]                               
LinkedList:[Red, White, Pink, Green, Black]

Pictorial Presentation:

Java Collection Linked-list: Insert some elements at the specified position into a linked list.

Flowchart:

Flowchart: Insert some elements at the specified position into a linked list.

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Insert the specified element at the end of a linked list.
Next: Get the first and last occurrence of the specified elements in a linked list.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/java-exercises/collection/java-collection-linked-list-exercise-9.php