当前位置:   article > 正文

LeetCode 232. 用栈实现队列_leetcode 232. 用栈实现队列c+完整代码

leetcode 232. 用栈实现队列c+完整代码

题目链接:https://leetcode.cn/problems/implement-queue-using-stacks/

栈的特点是先进后出,而队列的特点是先进先出,我们用两个栈正好能把顺序反过来实现类似队列的操作。

在这里插入图片描述

stackData 作为压入栈,向队尾添加的所有新元素只往 stackData 中压入;

stackTemp 作为临时栈,只有求队首元素和删除队首元素时才会用到 stackTemp 来颠倒元素顺序。

向队尾添加元素:

在这里插入图片描述

删除队首元素:

在这里插入图片描述

求队首元素:

在这里插入图片描述

C++代码如下:

class MyQueue {
public:
    stack<int> stackData, stackTemp;

    MyQueue() {

    }
    
    void push(int x) {
        stackData.push(x);
    }
    
    int pop() {
        while (!stackData.empty()) {
            stackTemp.push(stackData.top());
            stackData.pop();
        }
        int res = stackTemp.top();
        stackTemp.pop();
        while (!stackTemp.empty()) {
            stackData.push(stackTemp.top());
            stackTemp.pop();
        }
        return res;
    }
    
    int peek() {
        while (!stackData.empty()) {
            stackTemp.push(stackData.top());
            stackData.pop();
        }
        int res = stackTemp.top();
        while (!stackTemp.empty()) {
            stackData.push(stackTemp.top());
            stackTemp.pop();
        }
        return res;
    }
    
    bool empty() {
        return stackData.empty();
    }
};

/**
 * 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();
 */
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/671775
推荐阅读
相关标签
  

闽ICP备14008679号