如何从Collection中获取最大值(例如ArrayList)?

时间:2011-11-29 01:35:15

标签: java

有一个存储整数值的ArrayList。我需要在此列表中找到最大值。例如。假设arrayList存储的值是:10, 20, 30, 40, 50和最大值  值为50

找到最大值的有效方法是什么?

@Edit: 我刚找到一个我不太确定的解决方案

ArrayList<Integer> arrayList = new ArrayList<Integer>();
arrayList.add(100); /* add(200), add(250) add(350) add(150) add(450)*/

Integer i = Collections.max(arrayList)

并返回最高值。

比较每个值的另一种方法,例如selection sort or binary sort algorithm

15 个答案:

答案 0 :(得分:256)

您可以使用Collections API轻松实现您的目标 - 有效阅读 - 足够 Javadoc for Collections.max

Collections.max(arrayList);
  

根据元素的自然顺序返回给定集合的最大元素。集合中的所有元素都必须实现Comparable接口。

答案 1 :(得分:27)

这个问题差不多用了一年,但我发现如果你为对象制作一个自定义比较器,你可以使用Collections.max作为对象的数组列表。

import java.util.Comparator;

public class compPopulation implements Comparator<Country> {
    public int compare(Country a, Country b) {
        if (a.getPopulation() > b.getPopulation())
            return -1; // highest value first
        if (a.getPopulation() == b.Population())
            return 0;
        return 1;
    }
}
ArrayList<Country> X = new ArrayList<Country>();
// create some country objects and put in the list
Country ZZ = Collections.max(X, new compPopulation());

答案 2 :(得分:18)

public int getMax(ArrayList list){
    int max = Integer.MIN_VALUE;
    for(int i=0; i<list.size(); i++){
        if(list.get(i) > max){
            max = list.get(i);
        }
    }
    return max;
}

根据我的理解,这基本上是Collections.max()所做的,尽管它们使用比较器,因为列表是通用的。

答案 3 :(得分:13)

我们可以简单地使用Collections.max()Collections.min()方法。

public class MaxList {
    public static void main(String[] args) {
        List l = new ArrayList();
        l.add(1);
        l.add(2);
        l.add(3);
        l.add(4);
        l.add(5);
        System.out.println(Collections.max(l)); // 5
        System.out.println(Collections.min(l)); // 1
    }
}

答案 4 :(得分:7)

Comparator.comparing

在Java 8中,使用lambda增强了集合。因此,使用Comparator.comparing

,可以按如下方式查找最大值和最小值

代码:

List<Integer> ints = Stream.of(12, 72, 54, 83, 51).collect(Collectors.toList());
System.out.println("the list: ");
ints.forEach((i) -> {
    System.out.print(i + " ");
});
System.out.println("");
Integer minNumber = ints.stream()
        .min(Comparator.comparing(i -> i)).get();
Integer maxNumber = ints.stream()
        .max(Comparator.comparing(i -> i)).get();

System.out.println("Min number is " + minNumber);
System.out.println("Max number is " + maxNumber);

输出:

 the list: 12 72 54 83 51  
 Min number is 12 
 Max number is 83

答案 5 :(得分:6)

Integer类实现了Comparable.So我们可以很容易地得到整数列表的最大值或最小值。

public int maxOfNumList() {
    List<Integer> numList = new ArrayList<>();
    numList.add(1);
    numList.add(10);
    return Collections.max(numList);
}

如果一个类没有实现Comparable,我们必须找到max和min值,那么我们必须编写自己的Comparator。

List<MyObject> objList = new ArrayList<MyObject>();
objList.add(object1);
objList.add(object2);
objList.add(object3);
MyObject maxObject = Collections.max(objList, new Comparator<MyObject>() {
    @Override
    public int compare(MyObject o1, MyObject o2) {
        if (o1.getValue() == o2.getValue()) {
            return 0;
        } else if (o1.getValue() > o2.getValue()) {
            return -1;
        } else if (o1.getValue() < o2.getValue()) {
            return 1;
        }
        return 0;
    }
});

答案 6 :(得分:5)

找不到未排序列表中的最大值没有特别有效的方法 - 您只需要检查它们并返回最高值。

答案 7 :(得分:4)

以下是使用流来查找列表中最大值的另外三种方法:

List<Integer> nums = Arrays.asList(-1, 2, 1, 7, 3);
Optional<Integer> max1 = nums.stream().reduce(Integer::max);
Optional<Integer> max2 = nums.stream().max(Comparator.naturalOrder());
OptionalInt max3 = nums.stream().mapToInt(p->p).max();
System.out.println("max1: " + max1.get() + ", max2: " 
   + max2.get() + ", max3: " + max3.getAsInt());

所有这些方法,就像Collections.max一样,遍历整个集合,因此它们需要的时间与集合的大小成正比。

答案 8 :(得分:2)

Java 8

由于整数具有可比性,因此我们可以在其中使用以下划线:

List<Integer> ints = Stream.of(22,44,11,66,33,55).collect(Collectors.toList());
Integer max = ints.stream().mapToInt(i->i).max().orElseThrow(NoSuchElementException::new); //66
Integer min = ints.stream().mapToInt(i->i).min().orElseThrow(NoSuchElementException::new); //11

要注意的另一点是,我们不能使用Funtion.identity()来代替i->i,因为mapToInt期望ToIntFunction是一个完全不同的界面,并且与{{1 }}。此外,此接口只有一种方法Function,没有applyAsInt方法。

答案 9 :(得分:1)

这是功能

public int getIndexOfMax(ArrayList<Integer> arr){
    int MaxVal = arr.get(0); // take first as MaxVal
    int indexOfMax = -1; //returns -1 if all elements are equal
    for (int i = 0; i < arr.size(); i++) {
        //if current is less then MaxVal
        if(arr.get(i) < MaxVal ){
            MaxVal = arr.get(i); // put it in MaxVal
            indexOfMax = i; // put index of current Max
        }
    }
    return indexOfMax;  
}

答案 10 :(得分:1)

package in.co.largestinarraylist;

import java.util.ArrayList;
import java.util.Scanner;

public class LargestInArrayList {

    public static void main(String[] args) {

        int n;
        ArrayList<Integer> L = new ArrayList<Integer>();
        int max;
        Scanner in = new Scanner(System.in);
        System.out.println("Enter Size of Array List");
        n = in.nextInt();
        System.out.println("Enter elements in Array List");

        for (int i = 0; i < n; i++) {
            L.add(in.nextInt());
        }

        max = L.get(0);

        for (int i = 0; i < L.size(); i++) {
            if (L.get(i) > max) {
                max = L.get(i);
            }
        }

        System.out.println("Max Element: " + max);
        in.close();
    }
}

答案 11 :(得分:1)

除了gotomanners answer之外,如果有其他人来这里寻找同样问题的 null安全解决方案,这就是我最终的结果

Collections.max(arrayList, Comparator.nullsFirst(Comparator.naturalOrder()))

答案 12 :(得分:0)

在Java8中

=UNIQUE(ARRAYFORMULA(QUERY(TO_TEXT(A2:A), "SELECT Col1 WHERE Col1 IS NOT NULL ORDER BY Col1")))

答案 13 :(得分:0)

bottle

答案 14 :(得分:-3)

取决于数组的大小,多线程解决方案也可能加快速度