gpt4 book ai didi

java - 如何使用此代码对相同的值进行排序?

转载 作者:行者123 更新时间:2023-12-01 07:50:14 25 4
gpt4 key购买 nike

本题代码属于this回答。

我的问题是:如何使用以下代码对相同的值进行排序?

import java.util.*;

public class MapUtil
{
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;
}
}

最佳答案

摘自Collections.sort() ( http://docs.oracle.com/javase/8/docs/api/java/util/Collections.html#sort-java.util.List- ) 的文档:

This sort is guaranteed to be stable: equal elements will not be reordered as a result of the sort.

因此,相等元素(即在本例中具有相等值的条目)的顺序将与 map.entrySet() 返回的原始条目集中的顺序相同。

关于java - 如何使用此代码对相同的值进行排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39166129/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com