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

【剑指offer】【树】55-II.平衡二叉树

时间:2020-05-06 22:05:33      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:efi   shu   node   abs   ret   链接   null   turn   balance   

题目链接:https://leetcode-cn.com/problems/ping-heng-er-cha-shu-lcof/

递归

/**
 * 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) return true;
        if(abs(getHeight(root -> left) - getHeight(root -> right)) > 1) return false;
        return isBalanced(root -> left) && isBalanced(root -> right);
    }
    bool getHeight(TreeNode* root){
        if(!root) return 0;
        int lh = getHeight(root -> left);
        int rh = getHeight(root -> right);
        return lh > rh ? lh + 1 : rh + 1;
    }
};

【剑指offer】【树】55-II.平衡二叉树

标签:efi   shu   node   abs   ret   链接   null   turn   balance   

原文地址:https://www.cnblogs.com/Trevo/p/12683028.html

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