题解 | #二叉树的最大深度#

二叉树的最大深度

http://www.nowcoder.com/practice/8a2b2bf6c19b4f23a9bdb9b233eefa73

方法1:用递归的方法

方法2:用队列实现层序遍历,求层序遍历返回数组的值即可

class Solution:
    def maxDepth(self , root: TreeNode) -> int:
        # write code here
        left_max = 0
        right_max = 0
        if not root:
            return 0
        left_max = 1 + self.maxDepth(root.left)
        right_max = 1 + self.maxDepth(root.right)    
        return max(left_max, right_max)
全部评论

相关推荐

点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务