首页 > 代码库 > 用两个栈实现队列

用两个栈实现队列

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

package com.algorithm;

import java.util.Stack;
//用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型。
public class StackIntoQueen5 {
    Stack<Integer> stack1 = new Stack<Integer>();
    Stack<Integer> stack2 = new Stack<Integer>();
    //我的思路 每次都将当前stack1的东西 push到另外一个stack2中,然后放入stack1中放入最新的值,再将
    //stack2的值放入stack1中
    //运行时间:32ms
    //占用内存:629k
    public void push(int node) {
        if(stack1.isEmpty()) {
            stack1.push(node);
        }else{
            while(!stack1.isEmpty()){
                stack2.push(stack1.pop());
            }
            stack1.push(node);
            while(!stack2.isEmpty()){
                stack1.push(stack2.pop());
            }
        }
    }
    
    public int pop() {
        return stack1.pop();
    }
    public static void main(String[] args) {
        
    }
}

 

用两个栈实现队列