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, ArrayList Exercises: Compare two array lists

Java Collection, ArrayList Exercises: Exercise-13 with Solution

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.

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.



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