LeetCode 590 N叉树的后序遍历[dfs 树] HERODING的LeetCode之路
Posted HERODING23
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 590 N叉树的后序遍历[dfs 树] HERODING的LeetCode之路相关的知识,希望对你有一定的参考价值。
解题思路:
标准的后序遍历模板即可,代码如下:
/*
// Definition for a Node.
class Node
public:
int val;
vector<Node*> children;
Node()
Node(int _val)
val = _val;
Node(int _val, vector<Node*> _children)
val = _val;
children = _children;
;
*/
class Solution
private:
vector<int> ans;
public:
vector<int> postorder(Node* root)
dfs(root);
return ans;
void dfs(Node* node)
if(node == nullptr) return;
for(int i = 0; i < node->children.size(); i ++)
dfs(node->children[i]);
ans.push_back(node->val);
;
以上是关于LeetCode 590 N叉树的后序遍历[dfs 树] HERODING的LeetCode之路的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode Algorithm 590. N 叉树的后序遍历
Leetcode刷题100天—590.N叉树的后序遍历(二叉树)—day12
LeetCode 589. N 叉树的前序遍历(迭代写法) / 2049. 统计最高分的节点数目 / 590. N 叉树的后序遍历