我正在研究TreeMap的实现(称为MyTreeMap),我在使用put方法时遇到了很多麻烦。我希望有人可以查看我的代码并指出我正确的方向,以确定问题出现了什么。
public class MyTreeMap<K extends Comparable<? super K>,V> extends AbstractMap<K,V> {
K key;
V value;
int height;
MyTreeMap<K,V> left,right;
int size;
public V put(K key, V value) {
int compareValue = this.key.compareTo(key);
if(!this.containsKey(key)) {
if(this.key == null) {
this.key = key;
this.value = value;
}
if(this.isLeaf() || this.isEmpty()) {
if(this.key.compareTo(key) > 0)
this.left = new MyTreeMap<K,V>(key,value,null,null);
else
this.right = new MyTreeMap<K,V>(key,value,null,null);
if(left.height > right.height + 1 || right.height > left.height + 1)
restructure(this);
this.size++;
setHeight();
return null;
}
else {
if(compareValue > 0)
return this.left.put(key, value);
else
return this.right.put(key, value);
}
}
else {
if(compareValue == 0) {
V temp = this.value;
this.value = value;
return temp;
}
else if(compareValue < 0)
return this.right.put(key, value);
else
return this.left.put(key, value);
}
}
答案 0 :(得分:0)
我认为你的逻辑有点内外,因此比它需要的要复杂得多:顶级if
应该看compareValue
,而不是进行containsKey
检查。
逻辑应该是:
compareValue==0
则表示您找到了正确的密钥,因此只需更新该值并返回P.S。我建议不要在TreeMap中允许空键,它会让你的生活更简单,并且不需要对键进行空检查