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

判断是不是平衡二叉树

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

/**
 * struct TreeNode {
 *  int val;
 *  struct TreeNode *left;
 *  struct TreeNode *right;
 * };
 */
/**
 * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
 *
 *
 * @param pRoot TreeNode类
 * @return bool布尔型
 */
int getDeepth(struct TreeNode* root) {
    if (root == NULL)
        return 0;
    int depth;
    int rdepth = getDeepth(root->right);
    int ldepth = getDeepth(root->left);
    depth = ldepth > rdepth ? ldepth + 1 : rdepth + 1;
    return depth;
}
bool IsBalanced_Solution(struct TreeNode* pRoot ) {
    // write code here
    if (pRoot == NULL)
        return true;
    int leftdepth = getDeepth(pRoot->left);
    int rightdepth = getDeepth(pRoot->right);
    int diff = leftdepth - rightdepth;
    if (abs(diff) > 1) {
        return 0;
    }
    //递归判断每个结点
    return IsBalanced_Solution(pRoot->left) && IsBalanced_Solution(pRoot->right);

}

全部评论

相关推荐

一名愚蠢的人类:多少games小鬼留下了羡慕的泪水
投递荣耀等公司10个岗位
点赞 评论 收藏
分享
10-30 10:16
南京大学 Java
龚至诚:给南大✌️跪了
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务