说我有一个包含元素的列表(34, 11, 98, 56, 43)。
(34, 11, 98, 56, 43)
使用Java 8流,如何找到列表中最小元素的索引(例如,本例中为1)?
我知道可以使用Java在Java中轻松完成此操作list.indexOf(Collections.min(list))。但是,我正在研究类似Scala的解决方案,我们可以简单地说List(34, 11, 98, 56, 43).zipWithIndex.min._2一下获得最小值的索引。
list.indexOf(Collections.min(list))
List(34, 11, 98, 56, 43).zipWithIndex.min._2
使用流或lambda表达式(例如Java 8的特定功能)可以完成相同的结果吗?
注意:这仅用于学习目的。使用Collections实用程序方法没有任何问题。
Collections
import static java.util.Comparator.comparingInt;
int minIndex = IntStream.range(0,list.size()).boxed() .min(comparingInt(list::get)) .get(); // or throw if empty list
正如@TagirValeev在他的回答中提到的那样,您可以通过使用IntStream#reduce而不是来避免装箱Stream#min,但是这样做的目的是使意图模糊:
IntStream#reduce
Stream#min
int minIdx = IntStream.range(0,list.size()) .reduce((i,j) -> list.get(i) > list.get(j) ? j : i) .getAsInt(); // or throw