欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

二叉树的最大深度

程序员文章站 2022-06-17 19:47:16
...

二叉树的最大深度

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

class Solution:
    def maxDepth(self, root):
        if not root:
            return 0
        max_left = self.maxDepth(root.left) 
        max_right = self.maxDepth(root.right) 
        return max(max_left, max_right) + 1  

二叉树的最大深度

上一篇: 正则表达式匹配

下一篇: 相同的树