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

leetcode 0404 二叉树检查平衡性 DFS

时间:2020-07-15 22:51:05      阅读:53      评论:0      收藏:0      [点我收藏+]

标签:png   tco   int   ret   lan   col   treenode   diff   平衡   

技术图片

public boolean isBalanced(TreeNode root) {
        if (root == null) {
            return true;
        }
        int diff = getDepth(root.left) - getDepth(root.right);
        diff = diff > 0 ? diff : diff * -1;
        if((diff <= 1)){return false;}
        return isBalanced(root.right) && isBalanced(root.left);
    }

    public int getDepth(TreeNode node) {
        if (node == null) {
            return 0;
        }
        return Math.max(getDepth(node.left), getDepth(node.right)) + 1;
    }

技术图片

 

leetcode 0404 二叉树检查平衡性 DFS

标签:png   tco   int   ret   lan   col   treenode   diff   平衡   

原文地址:https://www.cnblogs.com/niuyourou/p/13306569.html

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