翻译

给定一个二叉树,决定它是否是高度平衡的。

(高度是名词不是形容词……

对于这个问题。一个高度平衡二叉树被定义为:

这棵树的每一个节点的两个子树的深度差不能超过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(平衡二叉树)(*)的更多相关文章

  1. [LeetCode] 110. Balanced Binary Tree 平衡二叉树

    Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced binary ...

  2. LeetCode 110. Balanced Binary Tree平衡二叉树 (C++)

    题目: Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced bin ...

  3. C++版 - 剑指offer 面试题39:判断平衡二叉树(LeetCode 110. Balanced Binary Tree) 题解

    剑指offer 面试题39:判断平衡二叉树 提交网址:  http://www.nowcoder.com/practice/8b3b95850edb4115918ecebdf1b4d222?tpId= ...

  4. [LeetCode] 110. Balanced Binary Tree ☆(二叉树是否平衡)

    Balanced Binary Tree [数据结构和算法]全面剖析树的各类遍历方法 描述 解析 递归分别判断每个节点的左右子树 该题是Easy的原因是该题可以很容易的想到时间复杂度为O(n^2)的方 ...

  5. LeetCode 110. Balanced Binary Tree (平衡二叉树)

    Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced binary ...

  6. LeetCode 110. Balanced Binary Tree(判断平衡二叉树)

    Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced binary ...

  7. 【LeetCode】Balanced Binary Tree(平衡二叉树)

    这道题是LeetCode里的第110道题. 题目要求: 给定一个二叉树,判断它是否是高度平衡的二叉树. 本题中,一棵高度平衡二叉树定义为: 一个二叉树每个节点 的左右两个子树的高度差的绝对值不超过1. ...

  8. LeetCode之Balanced Binary Tree 平衡二叉树

    判定一棵二叉树是不是二叉平衡树. 链接:https://oj.leetcode.com/problems/balanced-binary-tree/ 题目描述: Given a binary tree ...

  9. 110 Balanced Binary Tree 平衡二叉树

    给定一个二叉树,确定它是高度平衡的.对于这个问题,一棵高度平衡二叉树的定义是:一棵二叉树中每个节点的两个子树的深度相差不会超过 1.案例 1:给出二叉树 [3,9,20,null,null,15,7] ...

随机推荐

  1. Makefile-命令前的@和-符号

    Makefile中命令前的@和-符号如果make执行的命令前面加了@字符,则不显示命令本身而只显示它的结果; Android中会定义某个变量等于@,例如 hide:= @ 通常make执行的命令如果出 ...

  2. bzoj 2002 LinkCutTree

    我的第一道LCT题(居然1A,O(∩_∩)O哈哈~) 题目:http://www.lydsy.com/JudgeOnline/problem.php?id=2002 大概题意: 给一颗有根树,维护每个 ...

  3. elasticsearch聚合--桶(Buckets)和指标(Metrics)的概念

    写在前面的话:读书破万卷,编码如有神--------------------------------------------------------------------主要内容包括: 聚合的两个核 ...

  4. 【原创】Eclipse导入Android项目报错解决

    1.点击报错的项目--->右键--->Properties--->选择Android--->将Project Build Target选择其一勾上-->Is Librar ...

  5. ida sdk add_struc_member array

    tid_t tid = get_struc_id ( "foo_type" ) ; struc_t * sptr = get_struc ( tid ); if ( sptr == ...

  6. mysql知识点(三)

    1.表关联是可以利用两个表的索引的,如果是用子查询,至少第二次查询是没有办法使用索引的. 2.  为了给主查询提供数据而首先执行的查询被叫做子查询 3.如果WHERE子句的查询条件里使用了函数(WHE ...

  7. go语言基础之函数只有一个返回值

    1.函数只有一个返回值 示例1: package main //必须有一个main包 import "fmt" func myfunc01() int { return 666 } ...

  8. 通过完整示例来理解如何使用 epoll

    网络服务器通常使用一个独立的进程或线程来实现每个连接.由于高性能应用程序需要同时处理大量的客户端,这种方法就不太好用了,因为资源占用和上下文切换时间等因素影响了同时处理大量客户端的能力.另一种方法是在 ...

  9. STL之set集合容器 【转】

    set集合容器实现了红黑树(Red-Black Tree)的平衡二叉检索树的的数据结构,在插入元素时,它会自动调整二叉树的排列,把该元素放到适当的位置,以确保每个子树根节点的键值大于左子树所有节点的键 ...

  10. html5的classList属性介绍和原生js实现jQuery的addClass,removeClass,hasClass方法

    其实html5已经扩展了class操作的相关API,其中classList属性就以及实现了class的增删和判断. classList属性的方法有: add(value) 添加类名,如果有则不添加 c ...