您的位置:首页 > 其它

LeetCode: Balanced Binary Tree

2012-10-04 18:47 337 查看
Problem:

Given a binary tree, determine if it is height-balanced.



An example of a height-balanced tree. A height-balanced tree is a tree whose subtrees differ in height by no more than one and the subtrees are height-balanced, too.
先提供一种递归解法,复杂度较高。
/**
* Definition for binary tree
* struct TreeNode {
*     int val;
*     TreeNode *left;
*     TreeNode *right;
*     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
int maxHeight(TreeNode *root) {
if (root == NULL) return 0;

int left = maxHeight(root->left) + 1;
int right = maxHeight(root->right) + 1;
return left > right ? left : right;
}

bool isBalanced(TreeNode *root) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
if (root == NULL) return true;

while(root != NULL)
{
int left = maxHeight(root->left);
int right = maxHeight(root->right);
if (abs(left - right) >= 2)
return false;
else
return isBalanced(root->left) && isBalanced(root->right);
}
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: