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

Balanced Binary Tree

时间:2015-03-19 23:28:57      阅读:200      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!