欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

队列实现栈和栈实现队列

程序员文章站 2024-01-28 18:15:16
...

两个队列实现一个栈和两个栈实现一个队列

参考博客

两个队列实现一个栈

​ push方法:直接将新的元素放入queue1的队尾。
​ pop方法:两个队列一定是一个队列为空,一个队列非空;将非空的队列中的元素放到另一个队列,直到只剩下一个元素,将这个元素弹出即可。
队列实现栈和栈实现队列

public class Queue2Stack{
    private LinkedList<Integer> queue1 = new LinkedList();
    private LinkedList<Integer> queue2 =  new LinkedList();
    public void push(int item){
        queue1.addLast(item);
    }
    public Integer pop(){
        if(queue1.size()+queue2.size()>1){
            if(queue1.isEmpty()){
                while(queue2.size()>1){
                    queue1.addLast(queue2.removeFirst());
                }
                return queue2.removeFirst();
            }
            if(queue2.isEmpty()){
                while(queue1.size()>1){
                    queue2.addLast(queue1.removeFirst());
                }
                return queue1.removeFirst();
            }
        }
        return null;
    }
}

两个栈实现一个队列

​ add方法:新add的元素直接放在stack1。
​ get方法:如果stack2为空,需要将所有stack1的元素放到stack2中;如果stack2不为空,直接从stack2中弹出最上面的元素即可。
队列实现栈和栈实现队列

public class Stack2Queue{
    private Stack<Integer> stack1 = new Stack();
    private Stack<Integer> stack2 = new Stack();
    public void add(int item){
        stack1.push(item);
    }
    public Integer get(){
        if(stack1.size()+stack2.size()>0){
            if(stack2.isEmpty()){
                while(!stack1.isEmpty()){
                    stack2.push(stack1.pop());
                }
            }
            return stack2.pop();
        }
        return null;
    }
}