HashMap按值递减排序

本文介绍了一个使用Java实现的HashMap排序示例,展示了如何将HashMap按值进行降序排序,并使用ArrayList和Collections.sort方法配合自定义Comparator实现。通过具体代码实例,深入理解HashMap排序的原理与操作。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


    @Test
    public void test() {
    
        Map<String, Double> map_Data = new HashMap();
        map_Data.put("A", 98.2d);
        map_Data.put("B", 50.4d);
        map_Data.put("C", 50.2d);
        map_Data.put("D", 25.4d);
        map_Data.put("E", 85.9d);
        System.out.println(map_Data);
        List<Map.Entry<String, Double>> list_Data = new ArrayList<Map.Entry<String, Double>>(map_Data.entrySet());
        Collections.sort(list_Data, new Comparator<Map.Entry<String, Double>>() {
            public int compare(Map.Entry<String, Double> o1, Map.Entry<String, Double> o2) {
                if (o2.getValue() != null && o1.getValue() != null && o2.getValue().compareTo(o1.getValue()) > 0) {
                    return 1;
                } else {
                    return -1;
                }
            }
        });
        System.out.println(list_Data);

    }

Console Output:


{A=98.2, B=50.4, C=50.2, D=25.4, E=85.9}
[A=98.2, E=85.9, B=50.4, C=50.2, D=25.4]

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值