题目链接这里
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
public class Solution {
private boolean balanced=true;
public boolean isBalanced(TreeNode root) {
real(root);
return balanced;
}
public int real(TreeNode root)
{
if(!balanced)
{
return -1;
}
if(root==null)
{
return 0;
}
int leftDeep=real(root.left);
int rightDeep=real(root.right);
if(Math.abs(leftDeep-rightDeep)>1)
{
balanced=false;
return -1;
}
else
{
return Math.max(leftDeep,rightDeep)+1;
}
}
}
二叉树平衡性判断
本文介绍了一种检查二叉树是否平衡的方法。通过递归计算每个节点的左右子树深度,并判断深度差是否超过1来确定整棵树是否平衡。
785

被折叠的 条评论
为什么被折叠?



