前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >获取map对象中的最大最小值

获取map对象中的最大最小值

作者头像
崔笑颜
发布2020-06-08 16:20:00
5.7K0
发布2020-06-08 16:20:00
举报

遇到的问题是获取map中的最高成绩和最低成绩 xxx.entrySet() 这里放的你的map

WechatIMG96
WechatIMG96

两种方式

1.8后

代码语言:javascript
复制
                List<Map.Entry<String, CorrectRate>> list = new ArrayList(correctRateOm.entrySet());
                Collections.sort(list, (o1, o2) -> (o1.getValue().getScore().intValue() - o2.getValue().getScore().intValue()));
        
                Double minScore = list.get(0).getValue().getScore();

                List<Map.Entry<String, CorrectRate>> list1 = new ArrayList(correctRateOm.entrySet());
                Collections.sort(list1, (o1, o2) -> (o2.getValue().getScore().intValue()) - o1.getValue().getScore().intValue());

                Double maxScore = list1.get(0).getValue().getScore();

1.8前

代码语言:javascript
复制
 //最大值
                List<Map.Entry<String, CorrectRate>> list = new ArrayList(correctRateOm.entrySet());
                Collections.sort(list, new Comparator<Map.Entry<String, CorrectRate>>() {
                            public int compare(Map.Entry<String, CorrectRate> o1, Map.Entry<String, CorrectRate> o2) {
                                return (o2.getValue().getScore().intValue() - o1.getValue().getScore().intValue());
                            }
                        }
                );
 Double maxScore = list.get(0).getValue().getScore();

                //最小值
                List<Map.Entry<String, CorrectRate>> list1 = new ArrayList(correctRateOm1.entrySet());
                Collections.sort(list1, new Comparator<Map.Entry<String, CorrectRate>>() {
                            public int compare(Map.Entry<String, CorrectRate> o1, Map.Entry<String, CorrectRate> o2) {
                                return (o1.getValue().getScore().intValue() - o2.getValue().getScore().intValue());
                            }
                        }
                );
 Double minScore = list1.get(0).getValue().getScore();
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2019-09-25,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 1.8后
  • 1.8前
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档