gpt4 book ai didi

java - 根据值对树形图进行排序,然后将其作为树形图返回。

转载 作者:行者123 更新时间:2023-12-02 04:55:25 28 4
gpt4 key购买 nike

我有树形图,我使用下面的代码对其值进行排序。我怎样才能再次获得树形图的结果?

static <K, V extends Comparable<? super V>> SortedSet<Map.Entry<K, V>> entriesSortedByValues(
Map<K, V> map) {
SortedSet<Map.Entry<K, V>> sortedEntries = new TreeSet<Map.Entry<K, V>>(
new Comparator<Map.Entry<K, V>>() {
@Override
public int compare(Map.Entry<K, V> e1, Map.Entry<K, V> e2) {
int res = e1.getValue().compareTo(e2.getValue());
return res != 0 ? res : 1;
}
});
sortedEntries.addAll(map.entrySet());
return sortedEntries;
}

最佳答案

您正在创建一个TreeSet,而您需要创建一个TreeMap。您传递给 TreeMap 的比较器将使用作为参数传递的 map 来获取值并进行比较。

将方法更改为:

static <K, V extends Comparable<? super V>> TreeMap<K, V> entriesSortedByValues(final Map<K, V> map) {
TreeMap<K, V> sortedEntries = new TreeMap<K, V>(new Comparator<K>() {
@Override
public int compare(K o1, K o2) {
return map.get(o1).compareTo(map.get(o2));
}
});
sortedEntries.putAll(map);
return sortedEntries;
}

测试使用:

public static void main(String args[]) {
Map<Integer, Integer> map = new HashMap<Integer, Integer>();
map.put(1, 3);
map.put(3, 1);
map.put(5, 6);
map.put(2, 10);
// Prints: {3=1, 1=3, 5=6, 2=10}
System.out.println(entriesSortedByValues(map));
}

关于java - 根据值对树形图进行排序,然后将其作为树形图返回。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28819161/

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