【发布时间】:2013-03-27 13:48:03
【问题描述】:
我在将HashMaps 与Java 中的值排序时遇到了一些问题。
我的代码是:
@SuppressWarnings("unchecked")
Map<String, Integer> scores = ((HashMap<String, Integer>) prefs.get());
Map<String, Integer> sortedscores = sortByValues(scores);
printMap(scores);
System.out.println("==============");
printMap(sortedscores);
prefs.get() 返回一个 Map<String, ?> 我将其转换为 <String, Integer >
排序函数:
public static <K, V extends Comparable<V>> Map<K, V> sortByValues(final Map<K, V> map) {
Comparator<K> valueComparator = new Comparator<K>() {
public int compare(K k1, K k2) {
int compare = map.get(k2).compareTo(map.get(k1));
if (compare == 0) return 1;
else return compare;
}
};
Map<K, V> sortedByValues = new TreeMap<K, V>(valueComparator);
sortedByValues.putAll(map);
return new LinkedHashMap<K,V>(sortedByValues);
}
public static void printMap(Map<String, Integer> unsortMap){
for (Map.Entry entry : unsortMap.entrySet()) {
System.out.println("Key : " + entry.getKey()
+ " Value : " + entry.getValue());
}
}
输出是:
Key : John Doe Value : 1000
Key : balazs Value : 975
Key : Balazs Value : 900
Key : aladar Value : 975
Key : balazs2 Value : 975
Key : score Value : 1000
Key : house Value : 1037
==============
Key : balazs Value : 975
Key : aladar Value : 975
Key : balazs2 Value : 975
Key : Balazs Value : 900
Key : house Value : 1037
Key : John Doe Value : 1000
Key : score Value : 1000
第一个是未排序的,第二个是排序的。 我的问题是第二个输出不是 DESC 顺序(按值)
编辑: 如果我自己创建一个 hasmap 就可以了:
Map<String, Integer> unsortMap = new HashMap<String, Integer>();
unsortMap.put("asd", 1);
unsortMap.put("asd2r1", 5);
unsortMap.put("house", 7);
unsortMap.put("3", 124);
unsortMap.put("7", 4);
unsortMap.put("5", 6);
unsortMap.put("6", 2);
unsortMap.put("8", 0);
但如果我用这个试试:Map<String, Integer> scores = ((HashMap<String, Integer>) prefs.get()); 我会得到那个奇怪的命令。
【问题讨论】:
-
好的,这里有什么问题?
-
值应该是按DESC顺序排序的,但是975,975,975,900,1037,1000,1000 1037不是应该在的位置
-
如果您的排序顺序混乱,比较器中似乎有问题。