码迷,mamicode.com
首页 > 其他好文 > 详细

110.Balanced Binary Tree

时间:2019-04-09 15:14:23      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:diff   pre   lse   kde   bool   class   root   balance   bin   

class Solution {
public:    
    bool isBalanced(TreeNode *root) {
        if (checkDepth(root) == -1) return false;
        else return true;
    }
    int checkDepth(TreeNode *root) {
        if (!root) return 0;
        int left = checkDepth(root->left);
        if (left == -1) return -1;
        int right = checkDepth(root->right);
        if (right == -1) return -1;
        int diff = abs(left - right);
        if (diff > 1) return -1;
        else return 1 + max(left, right);
    }
};

110.Balanced Binary Tree

标签:diff   pre   lse   kde   bool   class   root   balance   bin   

原文地址:https://www.cnblogs.com/smallredness/p/10676940.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!