Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Collection, LinkedList Exercises: Join two linked lists

Java Collection, LinkedList Exercises: Exercise-17 with Solution

Write a Java program to join two linked lists.

Sample Solution:-

Java Code:

import java.util.*;
public class Exercise17 {
 public static void main(String[] args) {
  // create an empty linked list
  LinkedList <String> c1 = new LinkedList <String> ();
  
          c1.add("Red");
          c1.add("Green");
          c1.add("Black");
          c1.add("White");
          c1.add("Pink");
          System.out.println("List of first linked list: " + c1);
         LinkedList <String> c2 = new LinkedList <String> ();
          c2.add("Red");
          c2.add("Green");
          c2.add("Black");
          c2.add("Pink");
          System.out.println("List of second linked list: " + c2);
        
      // Let join above two list
        LinkedList <String> a = new LinkedList <String> ();
        a.addAll(c1);
        a.addAll(c2);
        System.out.println("New linked list: " + a);
             }
}

Sample Output:

List of first linked list: [Red, Green, Black, White, Pink]            
List of second linked list: [Red, Green, Black, Pink]                  
New linked list: [Red, Green, Black, White, Pink, Red, Green, Black, Pi
nk]

Pictorial Presentation:

Java Collection Linked-list: Join two linked lists.

Flowchart:

Flowchart: Join two linked lists

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Shuffle the elements in a linked list.
Next: Clone an linked list to another linked list.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe