查找 List 中的最大最小值
程序员文章站
2022-05-18 17:15:20
...
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("最大值: " + Collections.max(list));
System.out.println("最小值: " + Collections.min(list));
}
}
上一篇: 数组中查找给定值
下一篇: python的numpy模块