首页 > 其他 > 详细

110. Balanced Binary Tree

时间:2016-08-17 23:02:58      阅读:155      评论:0      收藏:0      [点我收藏+]

1. 问题描述

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.
Subscribe to see which companies asked this question
Tags: Tree, Depth-first Search
Similar Problems: (E) Maximum Depth of Binary Tree

2. 解题思路

  • 先求左右子树的深度,再递归判断

3. 代码

class Solution {
public:
    bool isBalanced(TreeNode* root) 
    {
        if (NULL == root)
        {
            return true;
        }
        int ld = getBinaryDepth(root->left);
        int rd = getBinaryDepth(root->right);
        if (ld-rd>1 || rd-ld>1)
        {
            return false;
        }
        else
        {
            return isBalanced(root->left) && isBalanced(root->right);
        }
    }
private:
    int getBinaryDepth(TreeNode* root)
    {
        if (NULL == root)
        {
            return 0;
        }
        int ld = 1 + getBinaryDepth(root->left);
        int rd = 1 + getBinaryDepth(root->right);
        return ld > rd ? ld : rd;
    }
};

4. 反思

  • 在CSDN上发现一种做法,可以把时间复杂度降低为O(N)
  • http://blog.csdn.net/feliciafay/article/details/18348065

110. Balanced Binary Tree

原文:http://www.cnblogs.com/whl2012/p/5782115.html

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