Leetcode 559.N叉树的最大深度
1 题目描述(Leetcode题目链接)
给定一个 N 叉树,找到其最大深度。最大深度是指从根节点到最远叶子节点的最长路径上的节点总数。例如,给定一个 3叉树 :
我们应返回其最大深度,3。
说明:
- 树的深度不会超过 1000。
- 树的节点总不会超过 5000。
2 题解
dfs或bsf怎么整都可以。
"""
# Definition for a Node.
class Node:
def __init__(self, val=None, children=None):
self.val = val
self.children = children
"""
class Solution:
def maxDepth(self, root: 'Node') -> int:
if not root:
return 0
depth = 1
for child in root.children:
depth = max(depth, 1 + self.maxDepth(child))
return depth