首页 > 其他 > 详细

【复】判断树的平衡,

时间:2014-07-20 22:15:02      阅读:338      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
/**
 * Definition for binary tree
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Solution {
    public boolean isBalanced(TreeNode root) {
        if(root==null) return true;
        int d1=depth(root.right);
        int d2=depth(root.left);
        if(Math.abs(d1-d2)>1) return false;
        else  return isBalanced(root.left)&&isBalanced(root.right);
         
        
        
        
    }
    
    public int depth(TreeNode node)
    {
        if(node==null) return 0;
        int d1=depth(node.right);
        int d2=depth(node.left);
        
        int max=d1>d2?d1:d2;
        return  max+1;
        
    }
    
}
View Code

2.求高度的时候在不平衡的时候返回-1就ok了,不用求高度,但是效率好像没啥变化

/**
 * Definition for binary tree
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Solution {
    private boolean ans=true;
    public boolean isBalanced(TreeNode root) {
        if(root==null) return true;
        if(depth(root)==-1) return false;
        return true;
        
       
        
        
        
    }
    
    public int depth(TreeNode node)
    {
        if(node==null) return 0;
        int d1=depth(node.right);
        int d2=depth(node.left);
        if(d1==-1||d2==-1) return -1;
        if(Math.abs(d1-d2)>1) return -1;
        
    
        
        
        return  Math.max(d1,d2)+1;
        
    }
    
}

【复】判断树的平衡,,布布扣,bubuko.com

【复】判断树的平衡,

原文:http://www.cnblogs.com/hansongjiang/p/3856549.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!