10

根据产生 double 或 int 值的标准的最大化,我经常需要集合的最大元素。Streams 有 max() 函数,它需要我实现一个比较器,我觉得这很麻烦。有没有更简洁的语法,比如names.stream().argmax(String::length)下面的例子?

import java.util.Arrays;
import java.util.Comparator;
import java.util.List;

public class ArgMax
{
    public static void main(String[] args)
    {
        List<String> names = Arrays.asList("John","Joe","Marilyn");
        String longestName = names.stream().max((String s,String t)->(Integer.compare(s.length(),t.length()))).get();
        System.out.println(longestName);
    }
}
4

3 回答 3

17

利用

String longestName = names.stream().max(Comparator.comparing(String::length)).get();

比较某些属性上的元素(可能比这更复杂,但不是必须的)。

正如布赖恩在评论中所建议的那样,如果有可能是空的,那么使用Optional#get()这样的方式是不安全的。Stream您会更适合使用一种更安全的检索方法,例如,Optional#orElse(Object)如果没有最大值,它将为您提供一些默认值。

于 2014-12-22T16:07:04.887 回答
5

我认为人们应该考虑到虽然max/min是独一无二的,但这当然不能保证argMax/ argMin; 这尤其意味着归约的类型应该是一个集合,例如 a List。这需要比上面建议的更多的工作。

下面的ArgMaxCollector<T>类提供了这种归约的简单实现。显示main了此类用于计算字符串集的argMax/的应用程序argMin

one two three four five six seven

按它们的长度排序。输出(分别报告argMaxargMin收集器的结果)应该是

[three, seven]
[one, two, six]

分别是两个最长的字符串和三个最短的字符串。

这是我第一次尝试使用新的 Java 8 流 API,因此欢迎任何评论!

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Comparator;
import java.util.List;
import java.util.stream.Collector;

class ArgMaxCollector<T> {

    private T max = null;
    private ArrayList<T> argMax = new ArrayList<T>();
    private Comparator<? super T> comparator;

    private ArgMaxCollector( Comparator<? super T> comparator ) {
        this.comparator = comparator;
    }

    public void accept( T element ) {
        int cmp = max == null ? -1 : comparator.compare( max, element );
        if ( cmp < 0 ) {
            max = element;
            argMax.clear();
            argMax.add( element );
        } else if ( cmp == 0 )
            argMax.add( element );
    }

    public void combine( ArgMaxCollector<T> other ) {
        int cmp = comparator.compare( max, other.max );
        if ( cmp < 0 ) {
            max = other.max;
            argMax = other.argMax;
        } else if ( cmp == 0 ) {
            argMax.addAll( other.argMax );
        }
    }

    public List<T> get() {
        return argMax;
    }

    public static <T> Collector<T, ArgMaxCollector<T>, List<T>> collector( Comparator<? super T> comparator ) {
        return Collector.of(
            () -> new ArgMaxCollector<T>( comparator ),
            ( a, b ) -> a.accept( b ),
            ( a, b ) ->{ a.combine(b); return a; },
            a -> a.get() 
        );
    }
}

public class ArgMax {

    public static void main( String[] args ) {

        List<String> names = Arrays.asList( new String[] { "one", "two", "three", "four", "five", "six", "seven" } );

        Collector<String, ArgMaxCollector<String>, List<String>> argMax = ArgMaxCollector.collector( Comparator.comparing( String::length ) );
        Collector<String, ArgMaxCollector<String>, List<String>> argMin = ArgMaxCollector.collector( Comparator.comparing( String::length ).reversed() );

        System.out.println( names.stream().collect( argMax ) );
        System.out.println( names.stream().collect( argMin ) );

    }

}
于 2015-02-23T23:30:00.763 回答
0

这里简单有效的解决方案:

https://stackoverflow.com/a/63201174/2069400

/** return argmin item, else null if none.  NAN scores are skipped */
public static <T> T argmin(Stream<T> stream, ToDoubleFunction<T> scorer) {
    Double min = null;
    T argmin = null;
    for (T p: (Iterable<T>) stream::iterator) {
        double score = scorer.applyAsDouble(p);
        if (min==null || min > score) {
            min = score;
            argmin = p;
        }
    }
    return argmin;
}
于 2020-08-01T02:37:28.543 回答