Java: Compare two array lists
Write a Java program to compare two array lists.
Pictorial Presentation:
Sample Solution:-
Java Code:
import java.util.*;
public class Exercise13 {
public static void main(String[] args) {
ArrayList<String> c1= new ArrayList<String>();
c1.add("Red");
c1.add("Green");
c1.add("Black");
c1.add("White");
c1.add("Pink");
ArrayList<String> c2= new ArrayList<String>();
c2.add("Red");
c2.add("Green");
c2.add("Black");
c2.add("Pink");
//Storing the comparison output in ArrayList<String>
ArrayList<String> c3 = new ArrayList<String>();
for (String e : c1)
c3.add(c2.contains(e) ? "Yes" : "No");
System.out.println(c3);
}
}
Sample Output:
[Yes, Yes, Yes, No, Yes]
Flowchart:
Java Code Editor:
Contribute your code and comments through Disqus.
Previous: Extract a portion of a array list.
Next: Swap two elements in an array list.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics