题解 | #判断是不是平衡二叉树#递归+剪枝
判断是不是平衡二叉树
https://www.nowcoder.com/practice/8b3b95850edb4115918ecebdf1b4d222
/**
* struct TreeNode {
* int val;
* struct TreeNode *left;
* struct TreeNode *right;
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* };
*/
class Solution {
public:
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param pRoot TreeNode类
* @return bool布尔型
*/
int height(TreeNode* root){
if(!root){ //到最底层了
return 0;
}
int l = height(root->left);
int r = height(root->right);
if(l==-1 || r==-1){ //不平衡了
return -1;
}
if(abs(l-r)>1){ //不平衡了
return -1;
}
return max(l,r)+1;
}
bool IsBalanced_Solution(TreeNode* pRoot) {
// write code here
int f = height(pRoot);
if(f == -1){
return false;
}else{
return true;
}
}
};

查看11道真题和解析