iT邦幫忙

2024 iThome 鐵人賽

1
佛心分享-刷題不只是刷題

刷經典 LeetCode 題目系列 第 48

經典LeetCode 232. Implement Queue using Stacks

  • 分享至 

  • xImage
  •  

題目:

在這道題目中,我們需要使用兩個堆疊 (stack) 來實現一個佇列 (queue)。由於堆疊是後進先出 (LIFO) 的結構,而佇列則是先進先出 (FIFO) 的結構,我們需要想辦法將兩個堆疊結合,使得整體行為模擬出佇列。

解題思路

push 時進第一個 stack,pop 時將第一個 stack 倒到第二個 stack 再 pop,然後再倒回第一個 stack 以利下次 push,

實作:

class MyQueue {
public:
    MyQueue() {
        
    }
    
    void push(int x) {
        stk1.push(x);
    }
    
    int pop() {
        while (!stk1.empty()) {
            stk2.push(stk1.top());
            stk1.pop();
        }
        int res = stk2.top();
        stk2.pop();
        while (!stk2.empty()) {
            stk1.push(stk2.top());
            stk2.pop();
        }
        return res;
    }
    
    int peek() {
        while (!stk1.empty()) {
            stk2.push(stk1.top());
            stk1.pop();
        }
        int res = stk2.top();
        while (!stk2.empty()) {
            stk1.push(stk2.top());
            stk2.pop();
        }
        return res;
    }
    
    bool empty() {
        return stk1.empty() && stk2.empty();
    }
private:
    stack<int> stk1; // in
    stack<int> stk2; // out
};

/**
 * Your MyQueue object will be instantiated and called as such:
 * MyQueue* obj = new MyQueue();
 * obj->push(x);
 * int param_2 = obj->pop();
 * int param_3 = obj->peek();
 * bool param_4 = obj->empty();
 */

參考:
#232. Implement Queue using Stacks


上一篇
經典LeetCode 543. Diameter of Binary Tree
下一篇
經典LeetCode 67. Add Binary
系列文
刷經典 LeetCode 題目51
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言