前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >【剑指Offer】55.2 平衡二叉树

【剑指Offer】55.2 平衡二叉树

作者头像
瑞新
发布2020-12-07 10:11:40
2250
发布2020-12-07 10:11:40
举报

NowCoder

题目描述

平衡二叉树左右子树高度差不超过 1。

在这里插入图片描述
在这里插入图片描述
代码语言:javascript
复制
public class Solution {
    // 求深度
    public int TreeDepth(TreeNode root) {
        return root == null ? 0 : Math.max(TreeDepth(root.left)+1, TreeDepth(root.right)+1);
    }
    public boolean IsBalanced_Solution(TreeNode root) {
        if(root == null)
            return true;
        
        int left = TreeDepth(root.left);
        int right = TreeDepth(root.right);
        return Math.abs(left - right) > 1 ? false : true && IsBalanced_Solution(root.left) && IsBalanced_Solution(root.right);
    }
}
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2020-08-29 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 题目描述
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档