1. 程式人生 > >5.用兩個棧實現佇列

5.用兩個棧實現佇列

用兩個棧來實現一個佇列,完成佇列的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() { if(stack1.empty())return 0; while(!stack1.empty()){ stack2.push(stack1.pop()); } int out=stack2.pop(); while(!stack2.empty()){ stack1.push(stack2.pop()); } return out; } }