那些学年已经过去很久了。在一家医院找到一份 IT 专家的工作。现在正在尝试做一些实际的编程。我现在正在研究二叉树,我想知道什么是确定树是否高度平衡的最佳方法。
我一直在想:
public boolean isBalanced(Node root){
if(root==null){
return true; //tree is empty
}
else{
int lh = root.left.height();
int rh = root.right.height();
if(lh - rh > 1 || rh - lh > 1){
return false;
}
}
return true;
}
这是一个好的实现吗? 还是我遗漏了什么?