Java: 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:
Flowchart:
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.
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-24.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics