在哈希映射中获得前10个值 [英] Get top 10 values in hash map

查看:95
本文介绍了在哈希映射中获得前10个值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想弄清楚如何从 HashMap 中获得前10个值。我最初尝试使用 TreeMap ,并按值排序,然后取前10个值,但看起来不是该选项,如 TreeMap 按键进行排序。

I am trying to figure out how could I get the top 10 values from the HashMap. I was initially trying to use the TreeMap and have it sort by value and then take the first 10 values however it seems that that is not the option, as TreeMap sorts by key.

我仍然能够知道哪些键具有最高值, K,V 的映射是 String,Integer

I want to still be able to know which keys have the highest values, the K, V of the map are String, Integer.

推荐答案

也许你应该为存储在hashmap中的值对象实现 Comparable 接口。
然后您可以创建一个包含所有值的数组列表:

Maybe you should implement the Comparable Interface to your value objects stored in the hashmap. Then you can create a array list of all values:

List<YourValueType> l = new ArrayList<YourValueType>(hashmap.values());
Collection.sort(l);
l = l.subList(0,10);

问候

这篇关于在哈希映射中获得前10个值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆