-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path102_binaryTreeLevelOrderTraversal.cpp
More file actions
50 lines (41 loc) · 1.38 KB
/
Copy path102_binaryTreeLevelOrderTraversal.cpp
File metadata and controls
50 lines (41 loc) · 1.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
#include <queue>
#include <vector>
#include <iostream>
using namespace std;
struct TreeNode {
int val;
TreeNode* left;
TreeNode* right;
TreeNode() : val(0), left(nullptr), right(nullptr) {};
TreeNode(int x) : val(x), left(nullptr), right(nullptr) {};
TreeNode(int x, TreeNode* left, TreeNode* right) : val(x), left(left), right(right) {};
};
class Solution {
public:
vector<vector<int>> levelOrder(TreeNode* root) {
vector<vector<int> > returner;
queue<TreeNode*> myQueue;
// First level vector
if (root) {
myQueue.push(root);
}
// Traverse through each level. Each iteration is one level
while (myQueue.empty() == false) {
vector<int> levelVector;
int size = myQueue.size();
for (unsigned int i = 0; i < size; ++i) {
TreeNode* node = myQueue.front();
myQueue.pop();
levelVector.push_back(node->val);
// Add the next level elements to the queue
if (node->left)
myQueue.push(node->left);
if (node->right)
myQueue.push(node->right);
}
// Add the current vector to the main vector
returner.push_back(levelVector);
}
return (returner);
}
};