-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path110-balanced-binary-tree.cpp
More file actions
80 lines (73 loc) · 1.6 KB
/
110-balanced-binary-tree.cpp
File metadata and controls
80 lines (73 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
//给定一个二叉树,判断它是否是 平衡二叉树
//
//
//
// 示例 1:
//
//
//输入:root = [3,9,20,null,null,15,7]
//输出:true
//
//
// 示例 2:
//
//
//输入:root = [1,2,2,3,3,null,null,4,4]
//输出:false
//
//
// 示例 3:
//
//
//输入:root = []
//输出:true
//
//
//
//
// 提示:
//
//
// 树中的节点数在范围 [0, 5000] 内
// -10⁴ <= Node.val <= 10⁴
//
//
// Related Topics 树 深度优先搜索 二叉树 👍 1664 👎 0
#include "headers.h"
//leetcode submit region begin(Prohibit modification and deletion)
/**
* 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 getHeight(TreeNode *root) {
if (root == nullptr) return 0;
int left = getHeight(root->left);
int right = getHeight(root->right);
if (left == -1 || right == -1 ||
abs(left - right) > 1) return -1;
return max(left, right) + 1;
}
bool isBalanced(TreeNode *root) {
if (root == nullptr) return true;
return getHeight(root) >= 0;
}
};
//leetcode submit region end(Prohibit modification and deletion)
int main() {
Solution s;
vector<int> arr{1, 2, 2, 3, -1, -1, 3, 4, -1, -1, -1, -1, -1, -1, 4};
TreeNode root(arr);
// s.inOrder(&root);// 4 3 2 1 2 3 4
cout << endl;
auto res = s.isBalanced(&root);
cout << res << endl;
}