用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型。
栈:先进后出
队列:先进先出
import java.util.Stack;
public class Solution {
Stack<Integer> stack1 = new Stack<Integer>();
Stack<Integer> stack2 = new Stack<Integer>();
public void push(int node) {
stack1.push(node);
}
public int pop() {
int res;
if(stack2.isEmpty()){
while(!stack1.isEmpty()){
stack2.push(stack1.pop());
}
}
res=stack2.pop();
return res;
}
}
//运行时间:18ms占用内存:9256k
上述代码没有对队列进行空的时候的判断,如果获取空队列的元素,需要进行判断,即两个栈都未空的情况,调用pop(),弹出空提醒~~~
本文介绍了一种使用两个栈实现队列的方法,并提供了完整的Java代码示例。通过将入队操作放在一个栈中,出队操作从另一个栈完成,以此实现队列的先进先出特性。
1101

被折叠的 条评论
为什么被折叠?



