w3resource

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


8. Insert at End

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

Sample Solution:-

Java Code:

import java.util.LinkedList;
  public class Exercise8 {
  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 at the end of a linked list
     l_list.offerLast("Pink");
     System.out.println("Final linked list:" + l_list);  
 }
}

Sample Output:

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

Pictorial Presentation:

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

Flowchart:

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

For more Practice: Solve these Related Problems:

  • Write a Java program to insert an element at the end of a linked list without traversing the entire list by maintaining a tail pointer.
  • Write a Java program to append an element at the end using recursion and then verify the last element using peekLast().
  • Write a Java program to insert an element at the end and then reverse the list to test proper insertion.
  • Write a Java program to implement a method that appends an element to the end and returns the updated linked list size.

Go to:


PREV : Insert at Front.
NEXT : Insert Elements at Position.

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.