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

剑指 Offer 55 - II. 平衡二叉树

时间:2020-09-18 00:02:14      阅读:32      评论:0      收藏:0      [点我收藏+]

标签:src   二叉树的深度   hle   mic   http   sel   return   type   info   

技术图片
技术图片

class Solution(object):
    def isBalanced(self, root):
        """
        :type root: TreeNode
        :rtype: bool
        """
        if not root:
            return True
        # 求左子树深度
        leftDenth = self.treeDepth(root.left)
        rightDenth = self.treeDepth(root.right)
        resLeft = self.isBalanced(root.left)
        resRight = self.isBalanced(root.right)
        if resLeft and resRight and abs(leftDenth-rightDenth)<=1:
            return True
        else:
            return False

    # 求二叉树的深度
    def treeDepth(self, root):
        if not root:
            return 0
        depthLeft = self.treeDepth(root.left)
        depthRight = self.treeDepth(root.right)
        return depthLeft + 1 if depthLeft > depthRight else depthRight + 1

剑指 Offer 55 - II. 平衡二叉树

标签:src   二叉树的深度   hle   mic   http   sel   return   type   info   

原文地址:https://www.cnblogs.com/panweiwei/p/13661857.html

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