-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImplementQueue2Stacks.cpp
More file actions
80 lines (68 loc) · 2.02 KB
/
ImplementQueue2Stacks.cpp
File metadata and controls
80 lines (68 loc) · 2.02 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <stack>
#include <queue>
using namespace std;
class MyQueue {
public:
stack<int> stack_newest_on_top, stack_oldest_on_top;
void push(int x) {
stack_newest_on_top.push(x);
}
void pop() {
if( stack_newest_on_top.size() >=1 || stack_oldest_on_top.size() >=1 ){
if(stack_oldest_on_top.size() == 0){///update
while(stack_newest_on_top.size() >= 1 ){
stack_oldest_on_top.push(stack_newest_on_top.top());
stack_newest_on_top.pop();
}
if(stack_oldest_on_top.size()>0){
stack_oldest_on_top.pop();
}
}
else{
stack_oldest_on_top.pop();
}
}
}
int front() {
int num = 0;
if(stack_oldest_on_top.size()>0){
int num = stack_oldest_on_top.top();
// cout << stack_oldest_on_top.size();
return num;
}
if(stack_oldest_on_top.size() == 0 && stack_newest_on_top.size() >0){
while(stack_newest_on_top.size() >= 1 ){
stack_oldest_on_top.push(stack_newest_on_top.top());
stack_newest_on_top.pop();
}
return stack_oldest_on_top.top();
}
return num;
}
};
int main() {
MyQueue q1;
int q, type, x;
cin >> q;
for(int i = 0; i < q; i++) {
cin >> type;
if(type == 1) {
cin >> x;
q1.push(x);
}
else if(type == 2) {
q1.pop();
}
else cout << q1.front() << endl;
}
/* Enter your code here. Read input from STDIN. Print output to STDOUT */
return 0;
}
//33
//33
//33