我有一个基于值排序的 TreeMap,它的打印如下所示:
abortion-2
able-2
ab-2
aaron-2
aaa-2
aa-2
a-2
absent-1
absence-1
abraham-1
ability-1
aberdeen-1
abc-1
但似乎具有相同值的单词以相反的排序顺序打印:
“abortion,able,ab,aaron,aaa,aa,a”代替“a,aa,aaa,aaron,ab,able abortion”等等。
我什至想过将每组具有相同值的键添加到 TreeSet 并打印出来,但我无法根据下一个值对其进行迭代。
这是我传递给 TreeMap 的比较器。谁能帮我更正代码以正确的顺序打印它?
public class MyComparator implements Comparator<String>{
Map<String, Integer> tiedMap;
public MyComparator(Map<String, Integer> map){
this.tiedMap = map;
}
public int compare(String a, String b){
if(tiedMap.get(a)>=tiedMap.get(b)){
return -1;
}
else
return 1;
}
}
这是我尝试打印的方式:
Iterator it = tree.entrySet().iterator();
for(int i=0; i<n; i++){
if(it.hasNext()){
Map.Entry pairs = (Map.Entry)it.next();
System.out.println(pairs.getKey()+"-"+pairs.getValue());
}
}
编辑:我正在将输入读入 TreeMap,然后将其传递给另一个 TreeMap。
编辑:创建 TreeMaps 的代码:
Map<String, Integer> map = new TreeMap<String, Integer>();
Words t = new Words();
MyComparator comp = w.(new MyComparator(map));
Map<String, Integer> tree = new TreeMap<String, Integer>(comp);
int size = Integer.parseInt(buffer.readLine());
for(int i = size; i>0; i--){
reader = buffer.readLine();
if(map.get(reader)!=null){
map.put(reader, map.get(reader)+1);
}
else
map.put(reader, 1);
}
tree.putAll(map);