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

Posted 景云

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-----110. 平衡二叉树相关的知识,希望对你有一定的参考价值。

代码

/**
 * 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. 平衡二叉树的主要内容,如果未能解决你的问题,请参考以下文章

⭐算法入门⭐《二叉树 - 平衡二叉树》简单01 —— LeetCode 110. 平衡二叉树

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

每天一道leetcode-110平衡二叉树

[LeetCode] 110. 平衡二叉树

LeetCode110. 平衡二叉树

LeetCode 110. 平衡二叉树