解题思路
树是递归定义的数据结构
树的深度也是递归定义的属性
对他的编码肯定最直接的方式也是递归
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
效果图
网友评论