Thursday, January 22, 2026
HomeLanguagesJavaJava Program to Compare Elements in a Collection

Java Program to Compare Elements in a Collection

A Collection is a group of individual objects represented as a single unit. Java provides Collection Framework which defines several classes and interfaces to represent a group of objects as a single unit. 

Example:

Input : List = [3, 5, 18, 4, 6]
Output:
Min value of our list : 3
max value of our list : 18

Input : List = ['a', 'a', 'a']
Output:
All elements are equal

Approach:

  1. Take inputs in the list.
  2. Create two variables, minimum and maximum.
  3. Use Collections.min() method and store the return value in min variable.
  4. Use Collections.max() method and store the return value in max variable.
  5. If the minimum and maximum variables are equal then print Equal elements.
  6. Else print minimum and maximum variables.

Below is the implementation of the above approach:

Java




// Java Program to Compare Elements in a Collection
import java.io.*;
import java.util.*;
  
class GFG {
    public static void main(String[] args)
    {
        // List initialization
        List<Integer> l = new ArrayList<>();
  
        // Add elements in the list
        l.add(3);
        l.add(5);
        l.add(18);
        l.add(4);
        l.add(6);
  
        // Minimum in the list
        int minimum = Collections.min(l);
  
        // Maximum in the list
        int maximum = Collections.max(l);
  
        if (minimum == maximum) {
            System.out.println("All elements are equal");
        }
        else {
            System.out.println("Min value of our list : "
                               + minimum);
            System.out.println("Max value of our list : "
                               + maximum);
        }
    }
}


Output

Min value of our list : 3
Max value of our list : 18

Time Complexity: O(N), where N is the length of the list.

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32475 POSTS0 COMMENTS
Milvus
119 POSTS0 COMMENTS
Nango Kala
6847 POSTS0 COMMENTS
Nicole Veronica
11977 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12064 POSTS0 COMMENTS
Shaida Kate Naidoo
6986 POSTS0 COMMENTS
Ted Musemwa
7220 POSTS0 COMMENTS
Thapelo Manthata
6933 POSTS0 COMMENTS
Umr Jansen
6912 POSTS0 COMMENTS