您的位置:首页 > Web前端

剑指offer 平衡二叉树

2016-04-28 09:25 197 查看
题目描述

输入一棵二叉树,判断该二叉树是否是平衡二叉树。

public boolean IsBalanced_Solution(TreeNode root) {
if (root == null) {
return true;
}
int left = TreeDepth(root.left);
int right = TreeDepth(root.right);
int dis = left - right;
if (dis > 1 || dis < -1) {
return false;
}
return IsBalanced_Solution(root.left) && IsBalanced_Solution(root.right);
}

/**
* 只有左子树,depth=左子树深度+1
* 只有右子树,depth=右子树深度+1
* 有左右子树,depth=max(左子树深度,右子树深度)+1
*
* @param pRoot
* @return
*/
public int TreeDepth(TreeNode pRoot) {
if (pRoot == null) {
return 0;
}
int left = TreeDepth(pRoot.left);
int right = TreeDepth(pRoot.right);
return (left > right) ? (left + 1) : (right + 1);
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  二叉树