leetcode 104. 二叉树的最大深度(python)

104. 二叉树的最大深度
给定一个二叉树,找出其最大深度。

二叉树的深度为根节点到最远叶子节点的最长路径上的节点数。

说明: 叶子节点是指没有子节点的节点。
leetcode 104. 二叉树的最大深度(python)_第1张图片

# Definition for a binary tree node.
# class TreeNode:
#     def __init__(self, x):
#         self.val = x
#         self.left = None
#         self.right = None

class Solution:
    def maxDepth(self, root: TreeNode) -> int:
        if not root:
            return 0
        lmaxDepth = self.maxDepth(root.left)
        rmaxDepth = self.maxDepth(root.right)
        return 1+max(lmaxDepth,rmaxDepth)

你可能感兴趣的:(leetcode刷题)