110. Balanced Binary Tree

Description:
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.
分析:给你一个二叉树,判断它是否为高度均衡的二叉树。对于这个问题,高度均衡的二叉树定义就是任意一个节点的两棵子树深度差不会超过1。
我最开始的错误理解是,二叉树的叶子深度差不超过1,于是我设置了一个max_depth和一个min_depth的变量来记录树的所有叶子所在深度的最大值和最小值。代码如下:

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    bool isBalanced(TreeNode* root) {
        if(root == nullptr)
            return true;

        int max = INT_MIN, min = INT_MAX, depth = 0;

        findDepth(root, max, min, depth);

        return (max - min) <= 1;
    }

    void findDepth(TreeNode* root, int& max, int& min, int depth)
    {
        if(root == nullptr)
        {
            max = (max > depth) ? max : depth;
            min = (min < depth) ? min : depth;
            return;
        }
        depth = depth + 1;
        findDepth(root->left, max, min, depth);
        findDepth(root->right, max, min, depth);
    }
};

提交之后,测试用例出错的是下面这个:
这里写图片描述
其中,最右边的3和最左边的5的深度差已经有2了,用我的理解的代码算出来是false的,但是实际上它是可以通过的。

正确的理解是二叉树任何一个节点的两个子树,他们的深度差不超过1,对于节点1来说,左子树为5,右子树为4,符合要求;并且对于左子树来说,他的左子树比右子树也只大1;右子树亦然。这就是典型的分治思想,用递归解决非常简单。

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    bool isBalanced(TreeNode* root) {
        if(root == nullptr)
            return true;

        int differ = abs(findDepth(root->left, 1)
                    - findDepth(root->right, 1));

        return (differ < 2) && isBalanced(root->left)
                && isBalanced(root->right);
    }

    int findDepth(TreeNode* root, int depth)
    {
        if(root == nullptr)
            return depth;

        return max(findDepth(root->left, depth), 
              findDepth(root->right, depth)) + 1;
    }
};

【你必须非常努力 才能看起来毫不费力】

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值