-
Notifications
You must be signed in to change notification settings - Fork 4
/
Solution.cpp
48 lines (43 loc) · 1.08 KB
/
Solution.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 <string>
#include <vector>
#include <iostream>
#include <sstream>
#include <algorithm>
#include <tuple>
#include <deque>
#include <unordered_map>
#include <cmath>
#include <queue>
using namespace std;
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
class Solution {
public:
vector<vector<int>> levelOrder(TreeNode* root) {
vector<vector<int>> res ;
if (root == NULL) return res;
deque<TreeNode*> q (1, root);
while (not q.empty()) {
// traverse this level , ie nodes in the q
int cnt = q.size();
vector<int> levelres ;
for (int i=0; i<cnt; i++) {
TreeNode * p = q.front();
q.pop_front();
if (p->left != NULL) q.push_back(p->left);
if (p->right != NULL) q.push_back(p->right);
levelres.push_back(p->val);
}
res.push_back(levelres);
}
return res;
}
};
int main() {
Solution a;
return 0;
}