用两个栈实现队列(Java实现)

题目描述
用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型。

解题思路
两个栈stack1和stack2 。

  • 开始时,每次添加队尾元素到stack1中。
  • 如果需要弹出队头元素,则将stack1中的元素弹出并push到stack2中,再将stack2的栈顶元素弹出,即为弹出了队头元素。
  • 如果stack2中是非空的,再在队尾中添加元素的时候仍然加到stack1中,从stack2中弹出队头元素。
  • 只有当stack2为空的时候,弹出队头元素才需要将stack1中的元素转移到stack2中。
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() {
        if(stack2.size() == 0) {
            while(!stack1.isEmpty()) {
                int temp = stack1.peek();
                stack2.push(temp);
                stack1.pop();
            }
        }
        int res = stack2.peek();
        stack2.pop();
        return res;
    }
}

参考

https://blog.youkuaiyun.com/melwx/article/details/88103754

### 使用两个实现队列Java代码示例 通过使用两个来模拟队列的行为是一种常见的数据结构设计方法。以下是基于此逻辑的一个具体实现: #### 实现原理 为了使两个能够完成队列的功能,可以定义一个输入 `inStack` 和一个输出 `outStack`。当执行入队操作时,元素被压入 `inStack`;而当需要出队时,则将所有元素从 `inStack` 转移到 `outStack` 并弹出顶部元素。 ```java import java.util.Stack; class MyQueue { private Stack<Integer> inStack; private Stack<Integer> outStack; /** Initialize your data structure here. */ public MyQueue() { inStack = new Stack<>(); outStack = new Stack<>(); } /** Push element x to the back of queue. */ public void push(int x) { inStack.push(x); } /** Removes the element from in front of queue and returns that element. */ public int pop() { if (outStack.isEmpty()) { while (!inStack.isEmpty()) { outStack.push(inStack.pop()); } } return outStack.pop(); } /** Get the front element. */ public int peek() { if (outStack.isEmpty()) { while (!inStack.isEmpty()) { outStack.push(inStack.pop()); } } return outStack.peek(); } /** Returns whether the queue is empty. */ public boolean empty() { return inStack.isEmpty() && outStack.isEmpty(); } } ``` 上述代码展示了如何利用两个来构建一个基本的队列功能[^1]。其中的关键在于理解何时以及如何在两个之间转移数据以保持 FIFO 的顺序。 #### 测试用例 下面是一个简单的测试例子用于验证该类的工作情况: ```java public class Main { public static void main(String[] args) { MyQueue obj = new MyQueue(); obj.push(1); obj.push(2); System.out.println(obj.peek()); // 输出 1 System.out.println(obj.pop()); // 输出 1 System.out.println(obj.empty()); // 输出 false } } ``` 这段程序创建了一个新的队列对象并进行了几个基础的操作演示其行为是否符合预期[^2]。 --- ###
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值