美文网首页LeetCode
二叉树求最大树深

二叉树求最大树深

作者: 无敌的肉包 | 来源:发表于2018-04-28 15:42 被阅读0次
    # Definition for a binary tree node.
    # class TreeNode(object):
    #     def __init__(self, x):
    #         self.val = x
    #         self.left = None
    #         self.right = None
    
    class Solution(object):
        def maxDepth(self, root):
            """
            :type root: TreeNode
            :rtype: int
            """
            if not root:
                return 0
            return max(self.maxDepth(root.left), self.maxDepth(root.right)) + 1
    
    
    

    相关文章

      网友评论

        本文标题:二叉树求最大树深

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