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

用兩個佇列實現棧

題目描述

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