剑指offer树55-II.平衡二叉树
Posted trevo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer树55-II.平衡二叉树相关的知识,希望对你有一定的参考价值。
题目链接:https://leetcode-cn.com/problems/ping-heng-er-cha-shu-lcof/
递归
/**
* 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:
bool isBalanced(TreeNode* root) {
if(!root) return true;
if(abs(getHeight(root -> left) - getHeight(root -> right)) > 1) return false;
return isBalanced(root -> left) && isBalanced(root -> right);
}
bool getHeight(TreeNode* root){
if(!root) return 0;
int lh = getHeight(root -> left);
int rh = getHeight(root -> right);
return lh > rh ? lh + 1 : rh + 1;
}
};
以上是关于剑指offer树55-II.平衡二叉树的主要内容,如果未能解决你的问题,请参考以下文章