二进制搜索树可能需要一个大程序,所以我决定不发布剩下的代码。我得到一些空指针异常,因为我想我不知道在我的删除函数中放置大括号的位置。任何人都可以帮我找到问题并解释原因吗?底部的I / O:
// other functions above
public void delete(int key) {
LinkNode x = firstNode;
LinkNode temp = search(x, key);
if(temp == null) {
System.out.println("delete " + key + " - not found.");
return;
}
LinkNode y = delete(temp); // line 252
System.out.println("deleted " + y.key + ".");
}
private LinkNode delete(LinkNode x) {
LinkNode t = firstNode;
if(x.left == null || x.right == null) {
t = x;
} else {
t = successor(x);
}
if(t.left != null) {
x = t.left;
} else {
x = t.right;
}
if(x != null) {
x.parent = t.parent;
}
if(t.parent == null) {
firstNode = x;
} else if(t == t.parent.left) {
t.parent.left = x;
} else {
t.parent.right = x;
}
if(t != x) {
t.parent = x.parent; // line 280
}
return t;
}
这是一些输入和输出。看起来我的其他功能似乎正常。
insert 3
inserted 3.
insert 5
inserted 5.
insert 2
inserted 2.
insert 20
inserted 20.
insert 100
inserted 100.
insert 42
inserted 42.
inorder
inorder traversal:
2 3 5 20 42 100
min
min is 2.
max
max is 100.
delete 3
deleted 5.
delete 42
Exception in thread "main" java.lang.NullPointerException
at Bst.delete(Bst.java:280)
at Bst.delete(Bst.java:252)
at prog.main(prog.java:52)
随意询问我的其他任何功能。谢谢你的帮助
答案 0 :(得分:0)
这应该是可以分配未经检查的空指针的唯一逻辑上可能的位置:
else {
x = t.right;
}
也许它看起来像上面的代码并且是:
else if (t.right != null) {
x = t.right;
}