forked from zhuli19901106/leetcode-zhuli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinary-tree-vertical-order-traversal_1_AC.cpp
66 lines (58 loc) · 1.51 KB
/
binary-tree-vertical-order-traversal_1_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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// Just how many ways do you need to traverse a binary tree?
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
#include <algorithm>
#include <queue>
#include <unordered_map>
#include <utility>
#include <vector>
using std::max;
using std::make_pair;
using std::min;
using std::pair;
using std::queue;
using std::unordered_map;
using std::vector;
class Solution {
public:
vector<vector<int>> verticalOrder(TreeNode* root) {
vector<vector<int>> res;
if (root == NULL) {
return res;
}
unordered_map<int, vector<int>> um;
int min_i = 0;
int max_i = 0;
// Level-order traversal
queue<pair<int, TreeNode *>> q;
q.push(make_pair(0, root));
TreeNode *p;
int i;
while (!q.empty()) {
i = q.front().first;
min_i = min(min_i, i);
max_i = max(max_i, i);
p = q.front().second;
q.pop();
um[i].push_back(p->val);
if (p->left != NULL) {
q.push(make_pair(i - 1, p->left));
}
if (p->right != NULL) {
q.push(make_pair(i + 1, p->right));
}
}
for (i = min_i; i <= max_i; ++i) {
res.push_back(um[i]);
}
um.clear();
return res;
}
};