美文网首页
python实现leetcode之104. 二叉树的最大深度

python实现leetcode之104. 二叉树的最大深度

作者: 深圳都这么冷 | 来源:发表于2021-09-25 00:06 被阅读0次

    解题思路

    树是递归定义的数据结构
    树的深度也是递归定义的属性
    对他的编码肯定最直接的方式也是递归

    104. 二叉树的最大深度

    代码

    # 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
            lm = self.maxDepth(root.left)
            rm = self.maxDepth(root.right)
            return max(lm, rm) + 1
    
    效果图

    相关文章

      网友评论

          本文标题:python实现leetcode之104. 二叉树的最大深度

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