左手边和分配者必须是变量

时间:2016-04-05 21:35:04

标签: binary-tree

到目前为止这是我的代码,但是为什么我在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;

}

}

0 个答案:

没有答案