首页 > 其他 > 详细

Balanced Binary Tree

时间:2015-03-19 23:25:52      阅读:265      评论:0      收藏:0      [点我收藏+]
/*
判断一颗二叉树是否是平衡二叉树(左右子节点的高度差不超过1或者是颗空树)
*/
/**
 * Definition for binary tree
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    int maxDepth(struct TreeNode *root) {
        if(!root) return 0;
        if(!root->left && !root->right) return 1;
        return max(maxDepth(root->left),maxDepth(root->right))+1;
    }
    bool isBalanced(TreeNode *root) {
        if(!root) return true;
        int left = maxDepth(root->left);
        int right = maxDepth(root->right);
        return (abs(left-right)<=1)&&isBalanced(root->left)&&isBalanced(root->right);
    }
};

 

Balanced Binary Tree

原文:http://www.cnblogs.com/llei1573/p/4351924.html

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