-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path429.cpp
More file actions
executable file
·44 lines (40 loc) · 821 Bytes
/
429.cpp
File metadata and controls
executable file
·44 lines (40 loc) · 821 Bytes
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
/*
// 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<vector<int>> res;
void dfs(Node* cur, int level){
if (res.size() < level + 1){
vector<int> tmp;
tmp.push_back(cur->val);
res.push_back(tmp);
}else{
res[level].push_back(cur->val);
}
for (auto child : cur->children){
dfs(child,level+1);
}
}
vector<vector<int>> levelOrder(Node* root) {
res.clear();
if (!root){
return res;
}
dfs(root,0);
return res;
}
};