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

平衡二叉树的判断

时间:2016-09-01 21:32:48      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:

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

平衡二叉树左右子树深度只差不超过1.

public class Solution {
    
    private boolean isAVL = true;
    
    public boolean IsBalanced_Solution(TreeNode root) {
        
        if (root == null)
            return true;
        
        depth(root);
        return isAVL;
    }
    
    public int depth(TreeNode root) {
        if (root == null)
            return 0;
        int leftDepth = depth(root.left);
        int rightDepth = depth(root.right);
        if (leftDepth - rightDepth > 1 || leftDepth - rightDepth < -1) {
            isAVL = false;
        }
        return leftDepth>rightDepth ? leftDepth+1:rightDepth+1;
    }
}

 

平衡二叉树的判断

标签:

原文地址:http://www.cnblogs.com/wxisme/p/5831121.html

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