如何按整数值对hashmap
进行排序,我找到的答案之一是here
由 Evgeniy Dorofeev 撰写,他的回答是这样的
HashMap<String, Integer> map = new HashMap<String, Integer>();
map.put("a", 4);
map.put("c", 6);
map.put("b", 2);
Object[] a = map.entrySet().toArray();
Arrays.sort(a, new Comparator() {
public int compare(Object o1, Object o2) {
return ((Map.Entry<String, Integer>) o2).getValue().compareTo(
((Map.Entry<String, Integer>) o1).getValue());
}
});
for (Object e : a) {
System.out.println(((Map.Entry<String, Integer>) e).getKey() + " : "
+ ((Map.Entry<String, Integer>) e).getValue());
}
输出
c : 6
a : 4
b : 2
我的问题是排序如何成为 Desc ?如果我想排序HashMap
Asc 我该怎么办?
最后一个问题是:如何在排序后获得第一个元素?
答案 0 :(得分:7)
对于反向排序切换o2
和o1
。要获取第一个元素,只需访问索引0处的数组:
Map<String, Integer> map = new HashMap<>();
map.put("a", 4);
map.put("c", 6);
map.put("b", 2);
Object[] a = map.entrySet().toArray();
Arrays.sort(a, new Comparator() {
public int compare(Object o1, Object o2) {
return ((Map.Entry<String, Integer>) o1).getValue().compareTo(
((Map.Entry<String, Integer>) o2).getValue());
}
});
for (Object e : a) {
System.out.println(((Map.Entry<String, Integer>) e).getKey() + " : "
+ ((Map.Entry<String, Integer>) e).getValue());
}
System.out.println("first element is " + ((Map.Entry<String, Integer>) a[0]).getKey() + " : "
+ ((Map.Entry<String, Integer>) a[0]).getValue());
打印
b:2
a:4
c:6
第一个元素是b:2
如果您有权访问lambda表达式,可以使用以下代码简化排序:
Arrays.sort(a, (o1, o2) ->
((Map.Entry<String, Integer>) o1).getValue().compareTo(((Map.Entry<String, Integer>) o2).getValue()));
答案 1 :(得分:3)
在Java 8中,您可以执行以下操作:
System.out.println(map.entrySet().stream().sorted((o1, o2) -> {
return o2.getValue().compareTo(o1.getValue());
}).findFirst());//would return entry boxed into optional which you can unbox.
答案 2 :(得分:2)
首先,回答你的问题:只需反转compare
方法的结果,将ASC更改为DESC。
HashMap<String, Integer> map = new HashMap<String, Integer>();
map.put("a", 4);
map.put("c", 6);
map.put("b", 2);
Object[] a = map.entrySet().toArray();
Arrays.sort(a, new Comparator() {
public int compare(Object o1, Object o2) {
// just reverse the result of the comparison
return -((Map.Entry<String, Integer>) o2).getValue().compareTo(
((Map.Entry<String, Integer>) o1).getValue());
}
});
for (Object e : a) {
System.out.println(((Map.Entry<String, Integer>) e).getKey() + " : "
+ ((Map.Entry<String, Integer>) e).getValue());
}
但是如果您需要使用已排序的Map
,我建议您使用TreeMap
的实例来自行处理排序。