我在将 Treapnode 插入 Treap 时遇到问题。它接受 3 个参数。添加(E 键,P 优先级,treapnode x)。我尝试了很多方法,但总是出现空指针异常。
我尝试检查左右树中的空情况。
private TreapNode add (E key, P priority, TreapNode x)
throws ElementFoundException {
// For You To Complete
int compare = key.compareTo(x.element());
if (x == null){
return new TreapNode(key, priority);
}
//root is larger than the key
else if (compare == 0) {
throw new ElementFoundException("Element was found, and tree was not changed.");
} else if (compare < 0) {
if (x.left() == null) {
//TreapNode y = new TreapNode(key, priority);
TreapNode y = x.left;
x.left = y.right;
y.right = x;
return y;
} else {
x.left = add(key, priority, x.left());
}
}
//root is smaller than the key
else if (compare > 0) {
if (x.right() == null) {
//TreapNode y = new TreapNode(key, priority);
TreapNode z = x.right;
x.right = z.left;
z.left = x;
return z;
}
}
return x;
}
MM们
相关分类