LeetCode 平衡二叉树
程序员文章站
2022-02-28 06:20:10
...
题目
给定一个二叉树,判断它是否是高度平衡的二叉树。
本题中,一棵高度平衡二叉树定义为:
一个二叉树每个节点 的左右两个子树的高度差的绝对值不超过1。
示例
- 给定二叉树 [3,9,20,null,null,15,7]
3
/ \
9 20
/ \
15 7
返回 true 。
2. 给定二叉树 [1,2,2,3,3,null,null,4,4]
1
/ \
2 2
/ \
3 3
/ \
4 4
返回 false 。
C++代码
递归
/**
* 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)
{
return getHeight(root)>=0 ? true:false;
}
int getHeight(TreeNode* root)
{
if(root==NULL)
{
return 0;
}
int lefth=getHeight(root->left);
int righth=getHeight(root->right);
if(lefth<0 || righth<0 || abs(lefth-righth)>1)
return -1;
return max(lefth,righth)+1;
}
};
上一篇: python 中节假日(工作日)判断
下一篇: 合并二叉树-树617-C++
推荐阅读
-
【leetcode 简单】第五题 最长公共前缀
-
Leetcode 289.生命游戏
-
LeetCode hot-100 简单and中等难度,21-30.
-
Leetcode Two Sum (java)Longest Substring Without Repeating Characters
-
LeetCode菜笔记
-
剑指Offer 34. 二叉树中和为某一值的路径(Medium)
-
python(leetcode)-66加一问题
-
算法小抄学习笔记 — 8.二叉树的遍历
-
剑指offer59:按之字形顺序打印二叉树:[[1], [3,2], [4,5,6,7]]
-
JavaScript数据结构与算法之二叉树插入节点、生成二叉树示例