平衡二叉树
描述
输入一棵二叉树,判断该二叉树是否是平衡二叉树。
平衡二叉树是指:父节点的左子树和右子树的高度之差不能大于1。
那么可以从底部遍历,判断子树是否是平衡二叉树,是则返回高度,否则停止遍历,返回false。
这样也保证了每个节点只访问一次。
public boolean IsBalanced_Solution(TreeNode root) {
return getDepth(root) != -1;
}
public int getDepth(TreeNode root) {
if (root == null)
return 0;
int left = getDepth(root.left);
if (left == -1) return -1;
int right = getDepth(root.right);
if (right == -1) return -1;
return Math.abs(left - right) > 1 ? -1 : 1 + Math.max(left, right);
}