Java Program to get minimum value with Comparator


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

karthikeya Boyini
karthikeya Boyini

I love programming (: That's all I know

Updated on: 30-Jul-2019

241 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements