Get Minimum Value Using Comparator in Java



First, declare an integer array and add some elements −

Integer arr[] = { 40, 20, 30, 10, 90, 60, 700 };

Now, convert the above array to List −

List list = Arrays.asList(arr);

Now, use Comparator and the reverseOrder() method. Using max() will eventually give you the maximum value, but with reverseOrder() it reverses the result −

Comparator comp = Collections.reverseOrder();
System.out.println("Minimum element = "+Collections.max(list, comp));

Example

 Live Demo

import java.util.Arrays;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
public class Demo {
   @SuppressWarnings("unchecked")
   public static void main(String args[]) {
      Integer arr[] = { 40, 20, 30, 10, 90, 60, 700 };
      List list = Arrays.asList(arr);
      Comparator comp = Collections.reverseOrder();
      System.out.println("Minimum element = "+Collections.max(list, comp));
   }
}

Output

Minimum element = 10
Updated on: 2019-07-30T22:30:25+05:30

338 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements