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: Compare two linked lists

Java Collection, LinkedList Exercises: Exercise-24 with Solution

Write a Java program to compare two linked lists.

Sample Solution:-

Java Code:

import java.util.*;
  public class Exercise24 {
  public static void main(String[] args) {
   LinkedList<String> c1= new LinkedList<String>();
          c1.add("Red");
          c1.add("Green");
          c1.add("Black");
          c1.add("White");
          c1.add("Pink");

          LinkedList<String> c2= new LinkedList<String>();
          c2.add("Red");
          c2.add("Green");
          c2.add("Black");
          c2.add("Orange");

          //comparison output in linked list
          LinkedList<String> c3 = new LinkedList<String>();
          for (String e : c1)
             c3.add(c2.contains(e) ? "Yes" : "No");
          System.out.println(c3);         
     }
}

Sample Output:

[Yes, Yes, Yes, No, No]

Pictorial Presentation:

Java Collection Linked-list: Compare two linked lists.

Flowchart:

Flowchart: Compare two linked lists

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Convert a linked list to array list.
Next: Test an linked list is empty or not.

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