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

判断是不是平衡二叉树

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

class Solution {
public:
    map<TreeNode *,int> hs;
    int depth(TreeNode *root){
        if(!root)return 0;
        if(hs.find(root)!=hs.end())return hs[root];
        int ldep=depth(root->left);
        int rdep=depth(root->right);
        return hs[root]=max(ldep,rdep)+1;
    }
    bool jude(TreeNode *root){
        if(!root) return true;
        return abs(hs[root->left]-hs[root->right])<=1&&jude(root->left)&&jude(root->right);
    }
    bool IsBalanced_Solution(TreeNode* pRoot) {
        depth(pRoot);
        return jude(pRoot);
    }
};

全部评论

相关推荐

昨天 11:21
门头沟学院 Java
总包48.5w,意想不到的价格
无情咸鱼王的秋招日记之薛定谔的Offer:R
点赞 评论 收藏
分享
11-15 19:28
已编辑
蚌埠坦克学院 硬件开发
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务