【leetcode】590. N-ary Tree Postorder Traversal
生活随笔
收集整理的這篇文章主要介紹了
【leetcode】590. N-ary Tree Postorder Traversal
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
題目如下:
解題思路:湊數題+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?
轉載于:https://www.cnblogs.com/seyjs/p/9397687.html
總結
以上是生活随笔為你收集整理的【leetcode】590. N-ary Tree Postorder Traversal的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Sgen.exe: Speed up X
- 下一篇: ts基础总结