题解 | #判断是不是平衡二叉树#

判断是不是平衡二叉树

https://www.nowcoder.com/practice/8b3b95850edb4115918ecebdf1b4d222

/**
 * struct TreeNode {
 *	int val;
 *	struct TreeNode *left;
 *	struct TreeNode *right;
 *	TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
 * };
 */
class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param pRoot TreeNode类 
     * @return bool布尔型
     */
    map<TreeNode*,int> hash;
    int depth(TreeNode* root)
    {
        if(root==nullptr)
            return 0;
        if(hash.find(root)!=hash.end())
            return hash[root];
        int ldepth=depth(root->left);
        int rdepth=depth(root->right);
        hash[root]=max(ldepth,rdepth)+1;
        return max(ldepth,rdepth)+1;
    }
    bool IsBalanced_Solution(TreeNode* pRoot) {
        int x=depth(pRoot);
        return IsBalancedTree(pRoot);
    }
    bool IsBalancedTree(TreeNode* pRoot)
    {
        if(pRoot==nullptr)
            return true;
        return abs(hash[pRoot->left]-hash[pRoot->right])<=1&&IsBalanced_Solution(pRoot->left)&&IsBalanced_Solution(pRoot->right);
    }
};

全部评论

相关推荐

不愿透露姓名的神秘牛友
07-08 10:39
一个证都没&nbsp;我能填什么
程序员小白条:别人有,你为什么没有,还是这个道理,社会就是比较,竞争,淘汰,你要安逸,那么就要做好淘汰的准备
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
07-10 11:31
点赞 评论 收藏
分享
牛客83700679...:简历抄别人的,然后再投,有反馈就是简历不行,没反馈就是学历不行,多投多改只要技术不差机会总会有的
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务