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

判断是不是平衡二叉树

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

递归一直是弱项

class Solution {
  public:
    bool IsBalanced_Solution(TreeNode* pRoot) {
      return deepth(pRoot) != -1;
    }
  private:
    int deepth(TreeNode *root) {
      if (root == nullptr) {
        return 0;
      }
      
      int ldep = deepth(root->left);
      if (ldep == -1) {
        return -1;
      }
      
      int rdep = deepth(root->right);
      if (rdep == -1) {
        return -1;
      }
      
      int sub = std::abs(ldep - rdep);
      
      //  -1会一直向上传递
      if (sub > 1) {
        return -1;
      }
      
      return std::max(ldep, rdep) + 1;
    }
};
全部评论

相关推荐

04-25 19:29
已编辑
宁波大学 测试开发
被普调的六边形战士很高大:你我美牛孩
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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