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

leetcode-----110. 平衡二叉树

时间:2020-07-26 00:05:02      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:ble   efi   tree node   ems   init   bool   lse   dfs   return   

代码

/**
 * 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 ans;
    bool isBalanced(TreeNode* root) {
        ans = true;
        dfs(root);
        return ans;
    }

    int dfs(TreeNode* root) {
        if (!root) return 0;
        int lh = dfs(root->left), rh = dfs(root->right);
        if (abs(lh - rh) > 1) ans = false;
        return max(lh, rh) + 1;
    }
};

leetcode-----110. 平衡二叉树

标签:ble   efi   tree node   ems   init   bool   lse   dfs   return   

原文地址:https://www.cnblogs.com/clown9804/p/13376089.html

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