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

5.用兩個棧實現隊列

ger pty 一個隊列 ack col void urn 操作 隊列

用兩個棧來實現一個隊列,完成隊列的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; } }

5.用兩個棧實現隊列