/**
* struct TreeNode {
* int val;
* struct TreeNode *left;
* struct TreeNode *right;
* };
*/
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param pRoot TreeNode类
* @return bool布尔型
*/
int deep(struct TreeNode* root) {
if(root == NULL) return 0;
int left = deep(root->left);
int right = deep(root->right);
return left > right ? left + 1 : right + 1;
}
bool IsBalanced_Solution(struct TreeNode* pRoot ) {
// write code here
if(pRoot == NULL) return true;
int left = deep(pRoot->left);
int right = deep(pRoot->right);
if(left - right > 1) return false;
if(right - left > 1) return false;
return IsBalanced_Solution(pRoot->left) && IsBalanced_Solution(pRoot->right);
}