码迷,mamicode.com
首页 > 编程语言 > 详细

【算法】输入一棵二叉树,判断该二叉树是否是平衡二叉树。

时间:2019-12-18 14:58:09      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:ret   tree   平衡二叉树   pre   tde   public   color   span   ==   

public boolean IsBalanced_Solution(TreeNode root) {
        return getDepth(root) != -1;
    }  
    private int getDepth(TreeNode root) {
        if (root == null) return 0;
        int left = getDepth(root.left);
        if (left == -1) return -1;
        int right = getDepth(root.right);
        if (right == -1) return -1;
        return Math.abs(left - right) > 1 ? -1 : 1 + Math.max(left, right);
    }

【算法】输入一棵二叉树,判断该二叉树是否是平衡二叉树。

标签:ret   tree   平衡二叉树   pre   tde   public   color   span   ==   

原文地址:https://www.cnblogs.com/nachdenken/p/12059363.html

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