我写了下面的代码,但我只得到了部分荣誉,我不确定如何解决此问题。
public boolean MBTsame(BinNode root1, BinNode root2)
{
if (root1 == root2 ) {
return true;
}
else if(root1 != null && root2 != null){
return true;
}
else {
return false;
}
}