我在一本书中看到了这个问题(Cracking the Coding Interview)。 建议的代码是:
public boolean isBalanced(Node root) {
if(root == null)
return true;
int leftHeight = getHeight(root.left);
System.out.println("left height: " + leftHeight);
int rightHeight = getHeight(root.right);
System.out.println("right height: " + rightHeight);
int diff = Math.abs(leftHeight - rightHeight);
// check if difference in height is more than 1
if (diff > 1)
return false;
// check if left and right subtrees are balanced
else
return isBalanced(root.left) && isBalanced(root.right);
我不明白的部分是为什么我们需要返回isBalanced(root.left)&& isBalanced(root.right)。仅仅检查高度是不够的,如果高度超过1则返回false,否则为真?
答案 0 :(得分:5)
不,仅检查高度并且如果高度大于1则返回false是不够的,否则为。只需检查根的高度就会产生误报,如下所示:
A
/ \
B F
/ /
C G
/ /
D H
/ /
E I