原创 【編程練習】用兩個棧實現隊列

用兩個棧來實現一個隊列,完成隊列的Push和Pop操作。 隊列中的元素爲int類型。 class Solution { public: void push(int node) { stack1.push(n