-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathLC_232_ImplQueueUsingStack.cpp
113 lines (100 loc) · 2.23 KB
/
LC_232_ImplQueueUsingStack.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/* https://leetcode.com/problems/implement-queue-using-stacks/
* 232. Implement Queue using Stacks
*/
/******************** PUSH Costly *******************/
class MyQueue {
stack<int> s1;
stack<int> s2;
int e;
public:
MyQueue() {
}
void push(int x) {
while(!s1.empty())
{
s2.push(s1.top()); s1.pop();
}
s1.push(x);
while(!s2.empty())
{
s1.push(s2.top()); s2.pop();
}
}
int pop() {
e = s1.top();
s1.pop();
return e;
}
int peek() {
return s1.top();
}
bool empty() {
return (s1.empty());
}
};
/******************** POP Costly *******************/
// class MyQueue {
// stack<int> s1; // input stack
// stack<int> s2; // output stack
// int x;
// public:
// MyQueue() {
// }
// void push(int x) {
// s1.push(x);
// }
// int pop() {
// if(!s2.empty())
// {
// x = s2.top();
// s2.pop();
// return x;
// }
// else if(s1.empty())
// {
// cout<<"queue empty";
// exit(1);
// }
// else{
// while(s1.size()!=1)
// {
// x = s1.top(); s1.pop();
// s2.push(x);
// }
// x=s1.top(); s1.pop();
// return x;
// }
// }
// int peek() {
// if(!s2.empty())
// {
// return s2.top();
// }
// else if(s1.empty())
// {
// cout<<"queue empty";
// exit(1);
// }
// else{
// while(s1.size()!=0)
// {
// s2.push(s1.top());
// s1.pop();
// }
// return s2.top();
// }
// }
// bool empty() {
// if(s1.empty() && s2.empty())
// return true;
// else return false;
// }
// };
/**
* Your MyQueue object will be instantiated and called as such:
* MyQueue* obj = new MyQueue();
* obj->push(x);
* int param_2 = obj->pop();
* int param_3 = obj->peek();
* bool param_4 = obj->empty();
*/