示例 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 。
/**
* 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 depth(TreeNode * root) {
if (!root) return 0;
int lh = depth(root->left);
int rh = depth(root->right);
return (lh == -1 || rh == -1 || abs(lh - rh) > 1)
? -1 : max(lh, rh) + 1;
}
bool isBalanced(TreeNode* root) {
return depth(root) != -1;
}
};