Java教程

Java Map 中取最大与最小 Value 对应的Key值

本文主要是介绍Java Map 中取最大与最小 Value 对应的Key值,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Java Map 中取最大与最小 Value 对应的Key值

public class MaxMapDemo {
    public static void main(String[] args) {
        Map<String, Integer> map = new HashMap();
        map.put("张三", 5);
        map.put("小三", 0);
        map.put("小四", 3);
        map.put("小五", 9);
        map.put("李四", 2);
        map.put("王五", 1);

        List<Map.Entry<String, Integer>> list = new ArrayList(map.entrySet());
        Collections.sort(list, (o1, o2) -> (o1.getValue().intValue() - o2.getValue().intValue()));
        String min = list.get(0).getKey();
        String max = list.get(list.size() - 1).getKey();

        System.out.println("最小的Key:" + min);
        System.out.println("最大的Key:" + max);
    }

}

输出结果:

最小的Key:小三
最大的Key:小五

 

这篇关于Java Map 中取最大与最小 Value 对应的Key值的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!