给定一个二叉树,判断它是否是高度平衡的二叉树。
本题中,一棵高度平衡二叉树定义为:
一个二叉树每个节点 的左右两个子树的高度差的绝对值不超过1。
示例 1:
给定二叉树 [3,9,20,null,null,15,7]
3 / \ 9 20 / \ 15 7
我们求高度:
class Solution {
public boolean isBalanced(TreeNode root) {
height(root);
return ans;
}
boolean ans = true;
int height(TreeNode root)
{
if(root == null)
return 0;
int left = height(root.left);
int right = height(root.right);
if(Math.abs(left-right) > 1)
ans = false;
return 1 + Math.max(left,right);
}
}