Tutorials Point


  Java Basics Examples
  Java Tutorial
  Java Useful Resources
  Selected Reading

© 2011 TutorialsPoint.COM


  Home     References     Discussion Forums     About TP  

Java Examples - Find min & max from a List


previous next AddThis Social Bookmark Button


Problem Description:

How to find min & max of a List?

Solution:

Following example uses min & max Methods to find minimum & maximum of the List.

import java.util.*;

public class Main {
   public static void main(String[] args) {
      List list = Arrays.asList("one Two three Four five six
      one three Four".split(" "));
      System.out.println(list);
      System.out.println("max: " + Collections.max(list));
      System.out.println("min: " + Collections.min(list));
   }
}

Result:

The above code sample will produce the following result.

[one, Two, three, Four, five, six, one, three, Four]
max: three
min: Four


previous next Printer Friendly



  

Advertisement

Online Image Processing

Indian Baby Names