-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
47 lines (38 loc) · 817 Bytes
/
main.cpp
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
#include <iostream>
#include <stack>
using namespace std;
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> preorder(Node *root) {
if (root == nullptr) return ans;
stack<Node *> stack;
stack.push(root);
while (!stack.empty()) {
Node *node = stack.top();
stack.pop();
ans.push_back(node->val);
for (int i = node->children.size() - 1; i >= 0; i--) {
stack.push(node->children[i]);
}
}
return ans;
}
private:
vector<int> ans;
};
int main() {
return 0;
}