LeetCode 110 Balanced Binary Tree(平衡二叉树)(*)
翻译
给定一个二叉树,决定它是否是高度平衡的。
(高度是名词不是形容词……
对于这个问题。一个高度平衡二叉树被定义为:
这棵树的每一个节点的两个子树的深度差不能超过1。
原文
Given a binary tree, determine if it is height-balanced.
For this problem, a height-balanced binary tree is defined as
a binary tree in which the depth of the two subtrees of every node never differ by more than 1.
分析
这道题。我觉得非常有意义,考察得也非常全面。我觉得的主要是有以下几个方面:
1,考察各种边界条件
2,考察递归以及对树的遍历
3。考察求解树的高度
先从小的模块開始写。也就是树的高度。
事实上我看以下的代码,或者说这几天的代码。都是怎么看怎么不顺眼,不知道是不是由于天气太冷让我思维都和身体一样僵硬了。
今天中雪……明天就要达到老家的历史最低温了。
int getHeight(TreeNode* root) {
int left = 0, right = 0;
if (!root || (!root->left &&!root->right))
return 0;
if (root->left != NULL)
left = 1 + getHeight(root->left);
if (root->right != NULL)
right = 1 + getHeight(root->right);
return max(left, right);
}
通过不断的从上往下的递归来求出它的高度。由于是求最大的高度,所以用了max函数。
由于上面的函数是求的一个节点以下的最大深度。而不包含该节点。所以在以下的函数中用了三目运算符来求出当前节点的深度。后面继续使用了abs函数来求绝对值。
接着就是继续递归了。假设有一步(一个节点)不满足条件,那么就直接返回假了 (不妥协……
bool isBalanced(TreeNode* root) {
if (!root || (!root->left && !root->right)) return true;
int left = root->left == NULL ? 0 : getHeight(root->left) + 1;
int right = root->right == NULL ? 0 : getHeight(root->right) + 1;
if (abs(left - right) > 1)
return false;
else if (!isBalanced(root->left) || !isBalanced(root->right))
return false;
return true;
}
这道题我觉得还是蛮难的。还是要多重复的琢磨琢磨了。
代码
/**
* 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:
int getHeight(TreeNode* root) {
int left = 0, right = 0;
if (!root || (!root->left &&!root->right))
return 0;
if (root->left != NULL)
left = 1 + getHeight(root->left);
if (root->right != NULL)
right = 1 + getHeight(root->right);
return max(left, right);
}
bool isBalanced(TreeNode* root) {
if (!root || (!root->left && !root->right)) return true;
int left = root->left == NULL ? 0 : getHeight(root->left) + 1;
int right = root->right == NULL ? 0 : getHeight(root->right) + 1;
if (abs(left - right) > 1)
return false;
else if (!isBalanced(root->left) || !isBalanced(root->right))
return false;
return true;
}
};
LeetCode 110 Balanced Binary Tree(平衡二叉树)(*)的更多相关文章
- [LeetCode] 110. Balanced Binary Tree 平衡二叉树
Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced binary ...
- LeetCode 110. Balanced Binary Tree平衡二叉树 (C++)
题目: Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced bin ...
- C++版 - 剑指offer 面试题39:判断平衡二叉树(LeetCode 110. Balanced Binary Tree) 题解
剑指offer 面试题39:判断平衡二叉树 提交网址: http://www.nowcoder.com/practice/8b3b95850edb4115918ecebdf1b4d222?tpId= ...
- [LeetCode] 110. Balanced Binary Tree ☆(二叉树是否平衡)
Balanced Binary Tree [数据结构和算法]全面剖析树的各类遍历方法 描述 解析 递归分别判断每个节点的左右子树 该题是Easy的原因是该题可以很容易的想到时间复杂度为O(n^2)的方 ...
- LeetCode 110. Balanced Binary Tree (平衡二叉树)
Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced binary ...
- LeetCode 110. Balanced Binary Tree(判断平衡二叉树)
Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced binary ...
- 【LeetCode】Balanced Binary Tree(平衡二叉树)
这道题是LeetCode里的第110道题. 题目要求: 给定一个二叉树,判断它是否是高度平衡的二叉树. 本题中,一棵高度平衡二叉树定义为: 一个二叉树每个节点 的左右两个子树的高度差的绝对值不超过1. ...
- LeetCode之Balanced Binary Tree 平衡二叉树
判定一棵二叉树是不是二叉平衡树. 链接:https://oj.leetcode.com/problems/balanced-binary-tree/ 题目描述: Given a binary tree ...
- 110 Balanced Binary Tree 平衡二叉树
给定一个二叉树,确定它是高度平衡的.对于这个问题,一棵高度平衡二叉树的定义是:一棵二叉树中每个节点的两个子树的深度相差不会超过 1.案例 1:给出二叉树 [3,9,20,null,null,15,7] ...
随机推荐
- Java乐观锁实现之CAS操作
介绍CAS操作前,我们先简单看一下乐观锁 与 悲观锁这两个常见的锁概念. 悲观锁: 从Java多线程角度,存在着“可见性.原子性.有序性”三个问题,悲观锁就是假设在实际情况中存在着多线程对同一共享的竞 ...
- WebSQL的基本使用过程
1.创建或打开数据库(openDatabase) var db = openDatabase('dbname', '1.0', 'discription', 2 * 1024); // 目前测试只有C ...
- Petuum - Careers
Petuum - Careers Cloudformation
- [Win32]创建模态窗口
http://www.cnblogs.com/zplutor/archive/2011/02/20/1958973.html 在Win32编程中,如果要显示一个模态窗口,一般是先创建对话框模板,然后使 ...
- Fixed DC-DC Regulator Output Uses A Digitally Controlled Potentiometer
http://electronicdesign.com/print/passives/fixed-dc-dc-regulator-output-uses-digitally-controlled-po ...
- Spring EL bean引用实例
在Spring EL,可以使用点(.)符号嵌套属性参考一个bean.例如,“bean.property_name”. public class Customer { @Value("#{ad ...
- 【spring cloud】分布式ID,雪花算法
分布式ID生成服务 参考地址:https://blog.csdn.net/wangkang80/article/details/77914849 算法描述: 最高位是符号位,始终为0,不可用. 41位 ...
- cocos2dx 3.0研究(1)-- hello world程序
1. 在mac上构建hello world很easy ./setup.py source /Users/jiangxf/.bash_profile cocos new AliGame -p com.m ...
- gradle 2.1构建android出现错误的解决方案
转自:http://www.tuicool.com/articles/YJNJbuA 使用不同版本Gradle构建Andorid 出现Gradle version xxxx is required 坑 ...
- jquery的功能函数
1.$.boxModel <!DOCTYPE html> <html> <head> <script src="/jquery/jquery-1.1 ...