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

LeetCode 解题报告

时间:2019-02-01 16:24:16      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:code   its   children   values   init   efi   post   tco   for   

题目要求

Given an n-ary tree, return the postorder traversal of its nodes‘ values.

题目分析及思路

题目给出一棵N叉树,要求返回结点值的后序遍历。可以使用递归的方法做。因为是后序遍历,所以最后加入根结点的值。

python代码?

"""

# Definition for a Node.

class Node:

    def __init__(self, val, children):

        self.val = val

        self.children = children

"""

class Solution:

    def postorder(self, root):

        """

        :type root: Node

        :rtype: List[int]

        """

        order = []

        if not root:

            return order

        for child in root.children:

            order.extend(self.postorder(child))

        order.append(root.val)

        return order

        

        

 

LeetCode 解题报告

标签:code   its   children   values   init   efi   post   tco   for   

原文地址:https://www.cnblogs.com/yao1996/p/10346145.html

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