Find max in list java

Java Examples - Find min & max from a List

Advertisements

Previous Page
Next Page

Problem Description

How to find min & max of a List ?

Solution

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

Live Demo
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
java_collections.htm
Previous Page Print Page
Next Page
Advertisements

Video liên quan

Chủ Đề