美文网首页
2019-08-22 剑指 二叉树的深度

2019-08-22 剑指 二叉树的深度

作者: mztkenan | 来源:发表于2019-08-22 20:14 被阅读0次

    2min,根的深度=左右子树最大深度+1

    class Solution:
        def TreeDepth(self, pRoot):
            if not pRoot:return 0
            return max(self.TreeDepth(pRoot.left),self.TreeDepth(pRoot.right))+1
    

    拓展:判断是否是平衡二叉树
    1.左右子树深度相差小于等于1
    2.后序遍历的同时,既判断子树是否平衡,也返回左右子树的深度。通过引用,out reference。

    相关文章

      网友评论

          本文标题:2019-08-22 剑指 二叉树的深度

          本文链接:https://www.haomeiwen.com/subject/jfiosctx.html