码迷,mamicode.com
首页 > 编程语言 > 详细

[LeetCode&Python] Problem 559. Maximum Depth of N-ary Tree

时间:2018-10-04 09:19:07      阅读:155      评论:0      收藏:0      [点我收藏+]

标签: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:

  1. The depth of the tree is at most 1000.
  2. 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

标签:queue   static   number   分享   down   stat   while   des   tco   

原文地址:https://www.cnblogs.com/chiyeung/p/9739585.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!