题解 | #判断是不是平衡二叉树#
判断是不是平衡二叉树
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_Solution (TreeNode pRoot) { // 两个判断条件 // 1. 左右子树的该高度差的绝对值不能大于1 // 2. 左右子树都是平衡二叉树 // base case if (pRoot == null) return true; int hightl = hight(pRoot.left); int hightr = hight(pRoot.right); return IsBalanced_Solution(pRoot.left) && IsBalanced_Solution(pRoot.right) && Math.abs(hightl - hightr) <= 1; } // 计算左右子树的高度 public int hight(TreeNode pRoot) { // base case if (pRoot == null) return 0; return Math.max(hight(pRoot.left), hight(pRoot.right)) + 1; } }#二叉树##平衡二叉树#