我想制作一个 TreeMap,以便每次在 TreeMap 中插入一个条目 - 条目都会根据运行时的值进行排序。(需要O(logN)时间。)所以,我用它的构造函数定义了一个TreeMap,如下所示::我不明白问题出在哪里......我很困惑。谁能解释一下错误/问题?
代码 ::
Map<String,Integer> tm =
new TreeMap<String,Integer>(new Comparator<Map.Entry<String,Integer>>(){
@Override
public int compare(Map.Entry<String, Integer> o1, Map.Entry<String, Integer> o2) {
throw new UnsupportedOperationException("Not supported yet."); // implement logic here
}
});