1 Star 0 Fork 0

陈世杰/leetcode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
110.平衡二叉树.cpp 856 Bytes
一键复制 编辑 原始数据 按行查看 历史
陈世杰 提交于 2022-11-23 09:46 . first commit
/*
* @lc app=leetcode.cn id=110 lang=cpp
*
* [110] 平衡二叉树
*/
// @lc code=start
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
class Solution
{
public:
int height(TreeNode *root)
{
if (!root)
return 0;
return max(height(root->left), height(root->right)) + 1;
}
bool isBalanced(TreeNode *root)
{
if (!root)
return true;
return abs(height(root->left) - height(root->right)) <= 1 && isBalanced(root->left) && isBalanced(root->right);
}
};
// @lc code=end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xingwozhonghua/leetcode.git
git@gitee.com:xingwozhonghua/leetcode.git
xingwozhonghua
leetcode
leetcode
master

搜索帮助