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

LeetCode 110. Balanced Binary Tree

时间:2017-04-26 22:02:02      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:amp   题目   class   bin   ==   null   nod   技术   turn   

题目描述:

技术分享

递归求解

/**
 * 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;
        if(abs(getdeepth(root->right) - getdeepth(root->left)) > 1)
            return false;
        return isBalanced(root->right) && isBalanced(root->left);
    }
    int getdeepth(TreeNode *node){
        if(node == NULL)
            return 0;
        int l1 = getdeepth(node->left) + 1;
        int l2 = getdeepth(node->right) + 1;
        return max(l1,l2);
    }
};

  

LeetCode 110. Balanced Binary Tree

标签:amp   题目   class   bin   ==   null   nod   技术   turn   

原文地址:http://www.cnblogs.com/strongYaYa/p/6771233.html

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