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

剑指offer-平衡二叉树

时间:2020-03-25 21:01:32      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:false   turn   ||   ==   color   剑指offer   solution   max   题目   

题目描述

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

public class Solution {
    public boolean IsBalanced_Solution(TreeNode root) {
        if(root==null)
            return true;
        int depthleft = TreeDepth(root.left);
        int depthright = TreeDepth(root.right);
        int cw = depthleft-depthright;
        if(cw<-1 || cw>1) return false;
        return IsBalanced_Solution(root.left)&&IsBalanced_Solution(root.right);
            
        
        
    }
    public int TreeDepth(TreeNode root) {
        if(root==null)
            return 0;
        int nleft = TreeDepth(root.left);
        int nright = TreeDepth(root.right);
        return Math.max(nleft,nright)+1;
    } 
}

 

剑指offer-平衡二叉树

标签:false   turn   ||   ==   color   剑指offer   solution   max   题目   

原文地址:https://www.cnblogs.com/loyolh/p/12569304.html

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