VOOZH about

URL: https://www.geeksforgeeks.org/java/java-program-to-compare-elements-in-a-collection/

⇱ Java Program to Compare Elements in a Collection - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Java Program to Compare Elements in a Collection

Last Updated : 23 Jul, 2025

A Collectionis 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:


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.

Comment