剑指offer:5.用两个栈实现队列

题目

用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型。牛客网oj地址

解题思路

因为队列是先进先出,而栈是先进后出,所以我们在操作的时候需要一个辅助栈将顺序逆转然后pop。具体操作是这样的,使用一个栈进行push操作,另一个辅助栈进行pop操作。当pop栈为空时就将push栈中的东西倒出来压倒pop栈中(这样就实现了逆序操作),当pop栈不为空的时候直接进行pop操作。具体代码如下所示:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
class Solution
{
public:
void push(int node) {
stack1.push(node);
}

int pop() {
if(stack2.empty()){
while(!stack1.empty()){
int tempNode=stack1.top();
stack1.pop();
stack2.push(tempNode);
}
}
int result=stack2.top();
stack2.pop();
return result;
}

private:
stack<int> stack1;
stack<int> stack2;
};

类似题目

leetcode:225. 用队列实现栈。解决思路类似,这里就不多描述了,ac代码如下:

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
class MyStack {
private:
queue<int> stack1;
queue<int> stack2;
public:
/** Initialize your data structure here. */
MyStack() {

}

/** Push element x onto stack. */
void push(int x) {
if(stack1.empty()){
stack1.push(x);
while(!stack2.empty()){
stack1.push(stack2.front());
stack2.pop();
}
}else{
stack2.push(x);
while(!stack1.empty()){
stack2.push(stack1.front());
stack1.pop();
}
}
}

/** Removes the element on top of the stack and returns that element. */
int pop() {
int result=0;
if(!stack1.empty()){
result=stack1.front();
stack1.pop();
}else{
result=stack2.front();
stack2.pop();
}
return result;
}

/** Get the top element. */
int top() {
if(!stack1.empty()){
return stack1.front();
}
return stack2.front();
}

/** Returns whether the stack is empty. */
bool empty() {
if(stack1.empty()&&stack2.empty()){
return true;
}
return false;
}
};