到目前为止这是我的代码,但是为什么我在temp.getLeft()= null时得到这个错误;一部分。
public Node removeLeaf(){
return removeLeaf(this.root);
}
public Node removeLeaf(Node node){
Node temp;
if(node.getLeft()==null && node.getRight()==null){
temp = node.parent;
}
if(temp == null){
return null;
}
if(temp.getLeft().equals(node)&& temp.getLeft()!=null){
temp.getLeft() = null;
}
}