[LeetCode&Python] Problem 559. Maximum Depth of N-ary Tree
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[LeetCode&Python] Problem 559. Maximum Depth of N-ary Tree相关的知识,希望对你有一定的参考价值。
?????????queue static number ?????? down stat while des tco
Given a n-ary tree, find its maximum depth.
The maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node.
For example, given a 3-ary
tree:
We should return its max depth, which is 3.
Note:
- The depth of the tree is at most
1000
. - The total number of nodes is at most
5000
.
DFS:
""" # Definition for a Node. class Node(object): def __init__(self, val, children): self.val = val self.children = children """ class Solution(object): def maxDepth(self, root): """ :type root: Node :rtype: int """ maxD=0 if root: for c in root.children: maxD=max(self.maxDepth(c),maxD) return maxD+1 return maxD
??????
BFS:
""" # Definition for a Node. class Node(object): def __init__(self, val, children): self.val = val self.children = children """ class Solution(object): def maxDepth(self, root): """ :type root: Node :rtype: int """ queue=[root] de=0 if root: while queue: de+=1 for i in range(len(queue)): node=queue.pop(0) for c in node.children: queue.append(c) return de
??????
以上是关于[LeetCode&Python] Problem 559. Maximum Depth of N-ary Tree的主要内容,如果未能解决你的问题,请参考以下文章
C++&Python描述 LeetCode C++&Python描述 LeetCode 剑指 Offer 22. 链表中倒数第k个节点
[LeetCode&Python] Problem 202. Happy Number
[LeetCode&Python] Problem 520. Detect Capital
[LeetCode&Python] Problem 383. Ransom Note