剑指offer-用两个栈实现队列 java

题目描述

用两个栈来实现一个队列,完成队列的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 result;
        if(stack2.empty()){
            while(!stack1.empty()){
                int temp = stack1.pop();
                stack2.push(temp);
            }
        }
       return result = stack2.pop();
    }
}

注意

第一个栈向第二个栈传送数据时,确保第二个栈为空,不然顺序会乱

posted @ 2018-01-25 10:44  果断的荔枝  阅读(147)  评论(0编辑  收藏  举报