forked from zhuli19901106/leetcode-zhuli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinary-tree-level-order-traversal_2_AC.cpp
47 lines (44 loc) · 1.14 KB
/
binary-tree-level-order-traversal_2_AC.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
// Iterative solution using <queue>
#include <queue>
#include <utility>
using std::make_pair;
using std::pair;
using std::queue;
/**
* Definition for a binary tree node.
* 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>> v;
if (root == NULL) {
return v;
}
queue<pair<int, TreeNode*>> q;
pair<int, TreeNode*> p;
q.push(make_pair(0, root));
TreeNode* ptr;
while (!q.empty()) {
p = q.front();
ptr = p.second;
q.pop();
while (v.size() <= p.first) {
v.push_back(vector<int>());
}
v[p.first].push_back(ptr->val);
if (ptr->left != NULL) {
q.push(make_pair(p.first + 1, ptr->left));
}
if (ptr->right != NULL) {
q.push(make_pair(p.first + 1, ptr->right));
}
}
return v;
}
};