美文网首页程序员
LeetCode:栈实现队列&队列实现栈

LeetCode:栈实现队列&队列实现栈

作者: 李海游 | 来源:发表于2020-05-01 19:46 被阅读0次

225. 用队列实现栈

使用队列实现栈的下列操作:

  • push(x) -- 元素 x 入栈
  • pop() -- 移除栈顶元素
  • top() -- 获取栈顶元素
  • empty() -- 返回栈是否为空
class MyStack {
public:
    /** Initialize your data structure here. */
    queue<int> q;
    int top_ele = -1;
    MyStack() {

    }
    
    /** Push element x onto stack. */
    void push(int x) {
        q.push(x);
        top_ele=x;
    }
    
    /** Removes the element on top of the stack and returns that element. */
    int pop() {
        int size=q.size();
        while(size>2)
        {
            int tmp=q.front();
            q.pop();
            q.push(tmp);
            size--;
        }
        //原队列倒数第二个元素是栈pop后的栈顶元素,更新top_ele
        top_ele=q.front();
        q.pop();
        q.push(top_ele);
        //原队列倒数第一个元素是栈pop的元素
        int tmp=q.front();
        q.pop();
        return tmp;
    }
    
    /** Get the top element. */
    int top() {
        return top_ele;
    }
    
    /** Returns whether the stack is empty. */
    bool empty() {
        return q.empty();
    }
};

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

使用一个变量随时获取队尾元素也就是栈顶元素,只在pop时更新队列。这样比在push时更新队列,pop和top时队列已经是更新过的更好一些。

232. 用栈实现队列

使用栈实现队列的下列操作:

  • push(x) -- 将一个元素放入队列的尾部。
  • pop() -- 从队列首部移除元素。
  • peek() -- 返回队列首部的元素。
  • empty() -- 返回队列是否为空。
class MyQueue {
public:
    /** Initialize your data structure here. */
    stack<int> s1;
    stack<int> s2;
    MyQueue() {

    }
    
    /** Push element x to the back of queue. */
    void push(int x) {
        s1.push(x);
    }
    
    /** Removes the element from in front of queue and returns that element. */
    int pop() {
        if(s2.empty())
        {
            while(!s1.empty())
            {
                int tmp=s1.top();
                s2.push(tmp);
                s1.pop();
            } 
        }
        int tmp=s2.top();
        s2.pop();
        return tmp;
    }
    
    /** Get the front element. */
    int peek() {
        if(s2.empty())
        {
            while(!s1.empty())
            {
                int tmp=s1.top();
                s2.push(tmp);
                s1.pop();
            } 
        }
        return s2.top();
    }
    
    /** Returns whether the queue is empty. */
    bool empty() {
        return s1.empty()&&s2.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();
 */

两个栈模拟队列,在pop和peelk时对栈进行翻转,翻转成的栈中元素的顺序为队列中元素的顺序。

相关文章

  • LeetCode 每日一题 [12] 用队列实现栈

    LeetCode 用队列实现栈 [简单] 使用队列实现栈的下列操作: push(x) -- 元素 x 入栈pop(...

  • Algorithm小白入门 -- 队列和栈

    队列和栈队列实现栈、栈实现队列单调栈单调队列运用栈去重 1. 队列实现栈、栈实现队列 队列是一种先进先出的数据结构...

  • 数据结构——栈和队列

    用数组实现栈和队列 用栈实现队列 用队列实现栈 栈和队列的经典算法题最小间距栈宠物收养所 数组实现栈和队列 用数组...

  • Swift 队列&栈 相关操作

    栈 LIFO(后进先出) 队列 FIFO(先进先出) 队列与栈相互的实现 栈 - 队列实现 队列 - 栈实现 相关...

  • 数据结构设计 --- 栈实现队列、队列实现栈

    队列实现栈(leetcode225) 题目描述:请你仅使用两个队列实现一个后入先出(LIFO)的栈,并支持普通队列...

  • LeetCode 每日一题 [43] 用两个栈实现队列

    LeetCode 用两个栈实现队列 [简单] 用两个栈实现一个队列。队列的声明如下,请实现它的两个函数 appen...

  • 38_两个有趣的问题

    关键词:通过栈实现队列、通过队列实现栈 0. 通过栈实现队列 用栈实现队列等价于用后进先出的特性实现先进先出的特性...

  • 栈&队列

    一、栈&队列总结 栈/队列的应用接雨水验证栈序列滑动窗口的最大值 栈/队列的特殊实现用两个栈实现队列用两个队列实现...

  • 队列之-队列实现栈

    一、队列实现栈核心算法概述 之前已经描述过了用栈实现队列的功能,见栈系列之-实现队列,那么同样队列也可以用来实现栈...

  • LeetCode:栈实现队列&队列实现栈

    225. 用队列实现栈 使用队列实现栈的下列操作:push(x) -- 元素 x 入栈pop() -- 移除栈顶元...

网友评论

    本文标题:LeetCode:栈实现队列&队列实现栈

    本文链接:https://www.haomeiwen.com/subject/nczqghtx.html