w3resource

Java: Compare two array lists


Write a Java program to compare two array lists.

Pictorial Presentation:

Java Collection, ArrayList Exercises: Compare two array lists

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:

Flowchart: Compare two array lists.

For more Practice: Solve these Related Problems:

  • Write a Java program to compare two ArrayLists for equality in both size and content using equals().
  • Write a Java program to compare two ArrayLists and output the elements that differ using streams.
  • Write a Java program to implement a custom comparison of two ArrayLists by sorting them first and then comparing element by element.
  • Write a Java program to compare two ArrayLists and determine if one is a subset of the other.

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.



Follow us on Facebook and Twitter for latest update.