剑指Offer----用两个栈实现队列

来源:互联网 发布:java中的string 编辑:程序博客网 时间:2024/05/17 21:58

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

解题思路:用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.isEmpty())return stack2.pop();        else{            while(!stack1.isEmpty()){                int k=stack1.pop();                stack2.push(k);            }        }        return stack2.pop();    }}


原创粉丝点击