【Leetcode】用栈实现队列!用队列实现栈!

232. 用栈实现队列

请你仅使用两个栈实现先入先出队列。队列应当支持一般队列支持的所有操作(push、pop、peek、empty):

实现 MyQueue 类:

void push(int x) 将元素 x 推到队列的末尾
int pop() 从队列的开头移除并返回元素
int peek() 返回队列开头的元素
boolean empty() 如果队列为空,返回 true ;否则,返回 false

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/implement-queue-using-stacks
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

import java.util.Stack;

class MyQueue {
    Stack<Integer> stack1;//用于进栈
    Stack<Integer> stack2;//用于出栈

    public MyQueue() {
        stack1= new Stack<>();
        stack2= new Stack<>();
    }

    public void push(int x){
        stack1.push(x);
    }

    public int pop(){
        dump();
        return stack2.pop();
    }

    public int peek(){
        dump();
        return stack2.peek();
    }

    public boolean isEmpty(){
        return stack1.isEmpty()&& stack2.isEmpty();
    }

    public void dump(){
        if(stack2.isEmpty()){
            while(!stack1.isEmpty()){
                stack2.push(stack1.pop());
            }
        }
    }
}

225. 用队列实现栈

请你仅使用两个队列实现一个后入先出(LIFO)的栈,并支持普通栈的全部四种操作(push、top、pop 和 empty)。

实现 MyStack 类:

void push(int x) 将元素 x 压入栈顶。
int pop() 移除并返回栈顶元素。
int top() 返回栈顶元素。
boolean empty() 如果栈是空的,返回 true ;否则,返回 false 。

注意:

你只能使用队列的基本操作 —— 也就是 push to back、peek/pop from front、size 和 is empty 这些操作。
你所使用的语言也许不支持队列。 你可以使用 list (列表)或者 deque(双端队列)来模拟一个队列 , 只要是标准的队列操作即可。

class MyStack {
    Queue<Integer> queue1;
    Queue<Integer> queue2;

    public MyStack() {
        queue1 = new LinkedList<>();
        queue2 = new LinkedList<>();
    }

    public void push(int x) {
    	// 先放在辅助队列中
        queue2.add(x);
        while (!queue1.isEmpty()) {
            queue2.add(queue1.poll());
        }
        
        //最后交换queue1和queue2,将元素都放到queue1中
        Queue<Integer> tempQueue;
        tempQueue = queue1;
        queue1 = queue2;
        queue2 = tempQueue;
    }

    public int pop() {
        return queue1.poll();
    }


    public int top() {
        return queue1.peek();
    }

    public boolean empty() {
        return queue1.isEmpty();
    }

}

版权声明:本文为Quanquanxiannv原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。