-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
97 lines (85 loc) · 2.38 KB
/
main.cpp
File metadata and controls
97 lines (85 loc) · 2.38 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// Source: https://leetcode.com/problems/n-ary-tree-preorder-traversal
// Title: N-ary Tree Preorder Traversal
// Difficulty: Easy
// Author: Mu Yang <http://muyang.pro>
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Given the `root` of an n-ary tree, return the preorder traversal of its nodes' values.
//
// Nary-Tree input serialization is represented in their level order traversal. Each group of children is separated by the null value (See examples)
//
// **Example 1:**
//
// https://assets.leetcode.com/uploads/2018/10/12/narytreeexample.png
//
// ```
// Input: root = [1,null,3,2,4,null,5,6]
// Output: [1,3,5,6,2,4]
// ```
//
// **Example 2:**
//
// https://assets.leetcode.com/uploads/2019/11/08/sample_4_964.png
//
// ```
// Input: root = [1,null,2,3,4,5,null,null,6,7,null,8,null,9,10,null,null,11,null,12,null,13,null,null,14]
// Output: [1,2,3,6,7,11,14,4,8,12,5,9,13,10]
// ```
//
// **Constraints:**
//
// - The number of nodes in the tree is in the range `[0, 10^4]`.
// - `0 <= Node.val <= 10^4`
// - The height of the n-ary tree is less than or equal to `1000`.
//
// **Follow up:** Recursive solution is trivial, could you do it iteratively?
//
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#include <queue>
#include <stack>
#include <vector>
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) {}
};
// DFS (Recursion)
class Solution {
public:
vector<int> preorder(Node* root) {
auto ans = vector<int>();
dfs(root, ans);
return ans;
}
private:
void dfs(Node* node, vector<int>& ans) {
if (!node) return;
ans.push_back(node->val);
for (auto child : node->children) dfs(child, ans);
}
};
// DFS (Stack)
class Solution2 {
public:
vector<int> preorder(Node* root) {
// Edge case
if (!root) return {};
// Prepare
auto ans = vector<int>();
auto st = stack<Node*>();
st.push(root);
// Loop
while (!st.empty()) {
auto node = st.top();
st.pop();
ans.push_back(node->val);
for (auto it = node->children.crbegin(); it != node->children.crend(); ++it) {
st.push(*it);
}
}
return ans;
}
};