首页 > 其他 > 详细

用栈实现队列

时间:2018-07-28 23:55:57      阅读:277      评论:0      收藏:0      [点我收藏+]
实现思想:对于A,B两个栈,A作为压栈,B作为弹出栈。
push操作时,将结果压入A栈,并且判断B栈是否为空,如果为空,则将A栈的元素全部移动到B栈
pop操作时,判断A,B栈是否为空,如果同时为空,则跑抛出异常,如果不同时为空,判断B栈是否有元素。
如果没有元素,则将A栈中元素全部移动到B栈中,进行弹出。

public class StackToQueue {
    private Stack<Integer> stackpush;
private Stack<Integer> stackpop;
public StackToQueue(){
stackpop = new Stack<>();
stackpush = new Stack<>();
}
public void push(int number){
stackpush.push(number);
dao();
}
public Integer pop(){
if(stackpush.isEmpty()&&stackpop.isEmpty()){
throw new RuntimeException("the Queue is null");
}
dao();
return stackpop.pop();
}
public Integer peek(){
if(stackpush.isEmpty()&&stackpop.isEmpty()){
throw new RuntimeException("the Queue is null");
}
dao();
return stackpop.peek();
}
//设置一个判断,如果B栈为空,则将A栈数据移动到B栈
public void dao(){
if(!stackpop.isEmpty())
return;
while (!stackpush.isEmpty()){
stackpop.push(stackpush.pop());
}
}
}
总结:使用两个栈进行配合,注意判断栈是否为空。

用栈实现队列

原文:https://www.cnblogs.com/liuwentao/p/9383819.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!