码迷,mamicode.com
首页 > 其他好文 > 详细

平衡二叉树

时间:2020-04-11 22:20:22      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:solution   turn   树的高度   class   return   height   判断   balance   左右   

解题思路:先计算左右子树的高度,如果满足平衡二叉树左右子树的高度差的绝对值不超过1,则返回该树的高度,否则返回-1表示子树已经不平衡了.

给定一个二叉树,判断它是否是高度平衡的二叉树。

本题中,一棵高度平衡二叉树定义为:

一个二叉树每个节点 的左右两个子树的高度差的绝对值不超过1。

示例 1:

给定二叉树 [3,9,20,null,null,15,7]


    3
   /   9  20
    /     15   7

返回 true 。
class Solution {
    public static int height(TreeNode root){
        if(root == null){
            return 0;
        }
        int leftHight = height(root.left);
        int rightHeight = height(root.right);
        if(leftHight >= 0 && rightHeight >=0 && Math.abs(leftHight-rightHeight) <=1){
            return Math.max(leftHight,rightHeight)+1;
        }else{
            return -1;
        }
    }
    public boolean isBalanced(TreeNode root) {
        return height(root) >= 0;
    }
}

平衡二叉树

标签:solution   turn   树的高度   class   return   height   判断   balance   左右   

原文地址:https://blog.51cto.com/14472348/2486588

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!