题解 | #判断是不是平衡二叉树#
判断是不是平衡二叉树
https://www.nowcoder.com/practice/8b3b95850edb4115918ecebdf1b4d222
import java.util.*;
/*
* public class TreeNode {
* int val = 0;
* TreeNode left = null;
* TreeNode right = null;
* public TreeNode(int val) {
* this.val = val;
* }
* }
*/
public class Solution {
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param pRoot TreeNode类
* @return bool布尔型
*/
public boolean isBalanced = true; //有一个节点不满足,则置为false
public boolean IsBalanced_Solution (TreeNode pRoot) {
// write code here
if( pRoot == null ) return true;
isBalance( pRoot );
return isBalanced;
}
public int isBalance( TreeNode node){
if( node == null || !isBalanced ) return 0; // 直接返回条件
if( node.left == null && node.right == null ) return 1;
// 计算左右子树高度差
int left = 0, right =0;
if( node.left != null ) left = isBalance( node.left );
if( node.right != null ) right = isBalance( node.right );
if( Math.abs(left-right) > 1 ) isBalanced=false; // 不满足平衡条件
return Math.max( left, right)+1; // 返回此节点的高度
}
}
#刷题#
查看7道真题和解析
