Given a binary tree, determine if it is height-balanced.

For this problem, a height-balanced binary tree is defined as a binary tree in which the depth of the two subtrees of every node never differ by more than 1.

解题思路:

递归即可,JAVA实现如下:

    public boolean isBalanced(TreeNode root) {
        if(root==null)
        	return true;
        if(Math.abs(maxDepth(root.left)-maxDepth(root.right))>1)
        	return false;
        return isBalanced(root.left)&&isBalanced(root.right);
    }
   static public int maxDepth(TreeNode root) {
        if(root==null)
            return 0;
        return Math.max(maxDepth(root.left), maxDepth(root.right))+1;
    }

 

相关文章:

  • 2021-08-23
  • 2021-05-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-12
  • 2021-09-26
  • 2021-08-12
猜你喜欢
  • 2021-09-08
  • 2021-08-22
  • 2021-07-20
  • 2021-07-18
  • 2021-10-07
  • 2021-08-23
  • 2021-11-28
相关资源
相似解决方案