leetcode590
Posted AsenYang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode590相关的知识,希望对你有一定的参考价值。
树的后序遍历。
class Solution { public: vector<Node> Tree; void postTree(Node node) { for (auto n : node.children) { Node node; node = Node(n->val, n->children); postTree(node); } Tree.push_back(Node(node.val, node.children)); } vector<int> postorder(Node* root) { vector<int> V; if (root != NULL) { postTree(*root); } for (auto n : Tree) { V.push_back(n.val); } return V; } };
以上是关于leetcode590的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 590 N叉树的后序遍历[dfs 树] HERODING的LeetCode之路
leetcode590. N-ary Tree Postorder Traversal
leetcode 590.N-ary Tree Postorder Traversal N叉树的后序遍历