Tìm min & max trong List trong Java



Miêu tả vấn đề

Cách tìm min và max của một List trong Java?

Giải pháp

Ví dụ sau minh họa cách sử dụng phương thức min và max để tìm lớn nhất và nhỏ nhất trong List trong Java.

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));
   }
}

Kết quả

Code trên sẽ cho kết quả sau:

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

collection_trong_java.jsp