用两个栈实现队列

来源:互联网 发布:mac aecc2017切换中文 编辑:程序博客网 时间:2024/06/06 19:43
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中,然后将stack1中的数依次出栈压入stack2中        stack1.push(node);    }    public int pop() {        while (!stack1.empty()) {            stack2.push(stack1.pop());        }        int temp = stack2.pop();        while (!stack2.empty())        {            stack1.push(stack2.pop());        }        return temp;    }}
原创粉丝点击