首页 > 其他 > 详细

LeetCode110——Balanced Binary Tree

时间:2015-02-05 16:26:47      阅读:287      评论:0      收藏:0      [点我收藏+]

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.

难度系数:

容易

实现

int getDepth(TreeNode *root)
{
    if (root == NULL) return 0; 
    if (root->left == NULL && root->right == NULL)
        return 1;
    int leftd = getDepth(root->left);
    int rightd = getDepth(root->right);
    return leftd > rightd ? leftd + 1 : rightd + 1;
}

bool isBalanced(TreeNode *root) {
    if (root == NULL) 
        return true;
    if (root->left == NULL && getDepth(root->right) <= 1)
        return true;
    if (root->right == NULL && getDepth(root->left) <= 1)
        return true;
    if ((getDepth(root->left) - getDepth(root->right)) > 1 || (getDepth(root->right) - getDepth(root->left)) > 1) {
        return false;
    }
    return isBalanced(root->left) && isBalanced(root->right);
}

LeetCode110——Balanced Binary Tree

原文:http://blog.csdn.net/booirror/article/details/43528591

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!