题解 | #判断是不是平衡二叉树#

判断是不是平衡二叉树

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 {
    class Result {
        int height = 0;
        boolean isBalanced = true;
    }
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     *
     * @param pRoot TreeNode类
     * @return bool布尔型
     */
    public boolean IsBalanced_Solution (TreeNode pRoot) {
        // write code here
        return IsBalanced(pRoot).isBalanced;
    }
    public Result IsBalanced(TreeNode root) {
        if (root == null)
            return new Result();
        Result res = new Result();

        Result left = IsBalanced(root.left);
        if (left.isBalanced == false) {
            res.isBalanced = false;
            return res;
        }
        Result right = IsBalanced(root.right);
        if (right.isBalanced == false) {
            res.isBalanced = false;
            return res;
        }

        if(Math.abs(left.height - right.height) > 1){
            res.isBalanced = false;
            return res;
        }
        
        res.height = Math.max(left.height, right.height) + 1;
        return res;
    }
}

全部评论
用左神的递归套路求解
点赞 回复 分享
发布于 2024-06-16 19:30 上海

相关推荐

海螺很能干:每次看到这种简历都没工作我就觉得离谱
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务