java 根据其值对地图进行排序。资料来源:http://stackoverflow.com/a/2581754/1057348
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 根据其值对地图进行排序。资料来源:http://stackoverflow.com/a/2581754/1057348相关的知识,希望对你有一定的参考价值。
// Java 6 and lower:
public static <K, V extends Comparable<? super V>> Map<K, V> sortByValue(Map<K, V> map) {
List<Map.Entry<K, V>> list = new LinkedList<Map.Entry<K, V>>(map.entrySet());
Collections.sort(list, new Comparator<Map.Entry<K, V>>() {
public int compare(Map.Entry<K, V> o1, Map.Entry<K, V> o2) {
return (o1.getValue()).compareTo(o2.getValue());
}
});
Map<K, V> result = new LinkedHashMap<K, V>();
for (Map.Entry<K, V> entry : list) {
result.put(entry.getKey(), entry.getValue());
}
return result;
}
// Java 7:
public static <K, V extends Comparable<? super V>> Map<K, V>
sortByValue( Map<K, V> map ) {
List<Map.Entry<K, V>> list =
new LinkedList<>( map.entrySet() );
Collections.sort( list, new Comparator<Map.Entry<K, V>>()
{
@Override
public int compare( Map.Entry<K, V> o1, Map.Entry<K, V> o2 )
{
return (o1.getValue()).compareTo( o2.getValue() );
}
} );
Map<K, V> result = new LinkedHashMap<>();
for (Map.Entry<K, V> entry : list)
{
result.put( entry.getKey(), entry.getValue() );
}
return result;
}
// Java 8:
public static <K, V extends Comparable<? super V>> Map<K, V>
sortByValue( Map<K, V> map )
{
Map<K,V> result = new LinkedHashMap<>();
Stream <Entry<K,V>> st = map.entrySet().stream();
st.sorted(Comparator.comparing(e -> e.getValue()))
.forEach(e ->result.put(e.getKey(),e.getValue()));
return result;
}
// Unit-Test:
public class MapUtilTest
{
@Test
public void testSortByValue()
{
Random random = new Random(System.currentTimeMillis());
Map<String, Integer> testMap = new HashMap<String, Integer>(1000);
for(int i = 0 ; i < 1000 ; ++i) {
testMap.put( "SomeString" + random.nextInt(), random.nextInt());
}
testMap = MapUtil.sortByValue( testMap );
Assert.assertEquals( 1000, testMap.size() );
Integer previous = null;
for(Map.Entry<String, Integer> entry : testMap.entrySet()) {
Assert.assertNotNull( entry.getValue() );
if (previous != null) {
Assert.assertTrue( entry.getValue() >= previous );
}
previous = entry.getValue();
}
}
}
以上是关于java 根据其值对地图进行排序。资料来源:http://stackoverflow.com/a/2581754/1057348的主要内容,如果未能解决你的问题,请参考以下文章
根据Java中的值对地图进行排序的最简单方法是啥?
根据另一个地图中的值对Java Map进行排序
基于多个值对地图进行排序(Java8/Jooq)
在Java中按键或值对地图进行排序[重复]
Python 3 按其值对字典进行排序
如何在 JavaScript 中按值对地图进行排序?