forked from zhuli19901106/leetcode-zhuli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinary-tree-right-side-view_1_AC.cpp
49 lines (46 loc) · 1.15 KB
/
binary-tree-right-side-view_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
// Level-order traversal
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
#include <queue>
#include <utility>
using std::make_pair;
using std::pair;
using std::queue;
class Solution {
public:
vector<int> rightSideView(TreeNode* root) {
vector<int> res;
if (root == NULL) {
return res;
}
pair<TreeNode *, int> p1, p2;
queue<pair<TreeNode *, int>> q;
TreeNode *ptr;
q.push(make_pair(root, 0));
while (!q.empty()) {
p1 = q.front();
q.pop();
if (q.empty() || q.front().second > p1.second) {
res.push_back((p1.first)->val);
}
ptr = p1.first;
p2.second = p1.second + 1;
if (ptr->left != NULL) {
p2.first = ptr->left;
q.push(p2);
}
if (ptr->right != NULL) {
p2.first = ptr->right;
q.push(p2);
}
}
return res;
}
};