Leetcode 平衡二叉树
程序员文章站
2022-02-19 06:34:18
...
给定一个二叉树,判断它是否是高度平衡的二叉树。
本题中,一棵高度平衡二叉树定义为:
一个二叉树每个节点 的左右两个子树的高度差的绝对值不超过1。
示例 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
。
递归 + 获取深度
int abs(int a)
{
return a < 0 ? -a : a;
}
int max(int a, int b)
{
return a > b? a : b;
}
int getDepth(struct TreeNode* root)
{
return root == NULL ? 0 : max(getDepth(root->left), getDepth(root->right)) + 1;
}
bool isBalanced(struct TreeNode* root) {
int a,b;
if(!root)
return true;
if(abs(getDepth(root->left) - getDepth(root->right)) > 1)
return false;
if(isBalanced(root->left) && isBalanced(root->right))
return true;
else
return false;
}
推荐阅读
-
【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数据结构与算法之二叉树插入节点、生成二叉树示例