-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathn-aryTreePostorderTraversal.cpp
More file actions
58 lines (51 loc) · 1.13 KB
/
n-aryTreePostorderTraversal.cpp
File metadata and controls
58 lines (51 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// Source: https://leetcode.com/problems/n-ary-tree-postorder-traversal/
// Author: Miao Zhang
// Date: 2021-02-23
/*
// 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 {
public:
vector<int> postorder(Node* root) {
vector<int> res;
pre(root, res);
return res;
}
void pre(Node* root, vector<int>& res) {
if (!root) return;
for (auto ch: root->children) pre(ch, res);
res.push_back(root->val);
}
};
class Solution {
public:
vector<int> postorder(Node* root) {
vector<int> res;
if (!root) return res;
stack<Node*> st;
st.push(root);
while (!st.empty()) {
Node* node = st.top();
res.push_back(node->val);
st.pop();
for (auto ch: node->children) {
st.push(ch);
}
}
reverse(res.begin(), res.end());
return res;
}
};