判断是否是平衡二叉树
Posted Blocking The Sky
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断是否是平衡二叉树相关的知识,希望对你有一定的参考价值。
class Solution {
public:
int height(TreeNode* root){//求当前结点高度
if(root==NULL){
return 0;
}
else
return max(height(root->left),height(root->right))+1;
}
bool isBalanced(TreeNode* root) {
if(root==NULL){
return true;
}
else{
return isBalanced(root->left)&&isBalanced(root->right)&&(abs(height(root->left)-height(root->right))<2);
}
}
};
以上是关于判断是否是平衡二叉树的主要内容,如果未能解决你的问题,请参考以下文章