leetcode做题笔记232. 用栈实现队列

请你仅使用两个栈实现先入先出队列。队列应当支持一般队列支持的所有操作(pushpoppeekempty):

实现 MyQueue 类:

  • void push(int x) 将元素 x 推到队列的末尾
  • int pop() 从队列的开头移除并返回元素
  • int peek() 返回队列开头的元素
  • boolean empty() 如果队列为空,返回 true ;否则,返回 false

说明:

  • 你 只能 使用标准的栈操作 —— 也就是只有 push to toppeek/pop from topsize, 和 is empty 操作是合法的。
  • 你所使用的语言也许不支持栈。你可以使用 list 或者 deque(双端队列)来模拟一个栈,只要是标准的栈操作即可。

思路一:模拟题意

c++解法

class MyQueue {
public:
    MyQueue() {}
    
    void push(int x) {
        st1.push(x);
    }
    
    int pop() {
       auto front = peek();
       st2.pop();
       return front;
    }
    
    int peek() {
        if (st2.empty()) {
            while (!st1.empty()) {
                st2.push(st1.top());
                st1.pop();
            }
       }
        auto cur = st2.top();
        return cur;
    }
    
    bool empty() {
        return st1.empty() && st2.empty();
    }

private:
    stack st1;
    // implement as queue
    stack st2;
};

分析:

栈为先进后出,将事物放入栈中相当于反转一次顺序,放入两次栈即转换为队列,这里使用两个栈来构建队列

总结:

本题考察了栈的应用,利用栈反转顺序两次则可得到队列

你可能感兴趣的:(栈的应用,leetcode,笔记,算法)