码迷,mamicode.com
首页 > 其他好文 > 详细

【leetcode】590. N-ary Tree Postorder Traversal

时间:2018-07-31 22:01:30      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:http   tor   class   ima   int   node   while   rsa   insert   

题目如下:

技术分享图片

解题思路:凑数题+2,做完先序做后序。凑数博+2。

代码如下:

class Solution(object):
    def postorder(self, root):
        """
        :type root: Node
        :rtype: List[int]
        """
        if root == None:
            return []
        res = []
        stack = [root]
        while len(stack) > 0:
            node = stack.pop(0)
            res.insert(0,node.val)
            for i in node.children:
                stack.insert(0, i)
        return res

 

【leetcode】590. N-ary Tree Postorder Traversal

标签:http   tor   class   ima   int   node   while   rsa   insert   

原文地址:https://www.cnblogs.com/seyjs/p/9397687.html

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