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

Leetcode[110]-Balanced Binary Tree

时间:2015-06-12 23:57:34      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:node   平衡二叉树   balance   tree   leetcode   

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.


判断一棵树是否属于平衡二叉树

判断主节点的左右节点深度大小差,如果不在【-1,1】内,返回false,否则,继续判断其左右节点是否属于平衡二叉树;

只要有不满足的,就返回false

Code(C++):

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    bool isBalanced(TreeNode* root) {
        if(root == NULL) return true;

        int ldepth = getDepth(root->left);
        int rdepth = getDepth(root->right);

        if(ldepth - rdepth > 1 || ldepth - rdepth < -1) return false;

        return isBalanced(root->left) && isBalanced(root->right);
    }

    //get node‘s depth
    int getDepth(TreeNode *root){
        if(root==NULL) return 0;

        int ldepth=0,rdepth=0;
        ldepth = getDepth(root->left);
        rdepth = getDepth(root->right);

        return ldepth > rdepth ? ldepth+1:rdepth+1;

    }
};

Leetcode[110]-Balanced Binary Tree

标签:node   平衡二叉树   balance   tree   leetcode   

原文地址:http://blog.csdn.net/dream_angel_z/article/details/46476429

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