剑指offer——面7:用两个栈实现一个队列

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

栈:先进后出
队列:先进先出

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() {
        int res;
        if(stack2.isEmpty()){
            while(!stack1.isEmpty()){
                stack2.push(stack1.pop());
            }
        }
        res=stack2.pop();
        return res;
    }
}
//运行时间:18ms占用内存:9256k

上述代码没有对队列进行空的时候的判断,如果获取空队列的元素,需要进行判断,即两个栈都未空的情况,调用pop(),弹出空提醒~~~

猜你喜欢

转载自blog.csdn.net/u010843421/article/details/80887887