-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimplentStackUsingQueues.cpp
More file actions
57 lines (51 loc) · 1.09 KB
/
implentStackUsingQueues.cpp
File metadata and controls
57 lines (51 loc) · 1.09 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
/**
*Implement the following operations of a stack using queues.
*push(x) -- Push element x onto stack.
*pop() -- Removes the element on top of the stack.
*top() -- Get the top element.
*empty() -- Return whether the stack is empty.
*/
class Stack {
public:
// Push element x onto stack.
void push(int x) {
q1.push(x);
}
// Removes the element on top of the stack.
void pop() {
while(q1.size()>1)
{
q2.push(q1.front());
q1.pop();
}
q1.pop();
while(!q2.empty())
{
q1.push(q2.front());
q2.pop();
}
}
// Get the top element.
int top() {
while(q1.size()>1)
{
q2.push(q1.front());
q1.pop();
}
int res = q1.front();
q2.push(res);
q1.pop();
while(!q2.empty())
{
q1.push(q2.front());
q2.pop();
}
return res;
}
// Return whether the stack is empty.
bool empty() {
return q1.empty();
}
private:
queue<int> q1,q2;
};