用栈实现队列-用队列实现栈

用栈实现队列

leetcode :

Implement Queue using Stacks

Implement the following operations of a queue using stacks.

  • push(x) -- Push element x to the back of queue.
  • pop() -- Removes the element from in front of queue.
  • peek() -- Get the front element.
  • empty() -- Return whether the queue is empty.

Notes:

  • You must use only standard operations of a stack -- which means only push
    to top
    peek/pop from topsize,
    and is empty operations are valid.
  • Depending on your language, stack may not be supported natively. You may simulate a stack by using a list or deque (double-ended queue), as long as you use only standard operations of a stack.
  • You may assume that all operations are valid (for example, no pop or peek operations will be called on an empty queue).

思路:用两个栈,s1,s2,s2只是为了移动数据用的。

class Queue {
public:
    stack<int> s1,s2;
    // Push element x to the back of queue.
    void push(int x) {
        s1.push(x);
    }

    // Removes the element from in front of queue.
    void pop(void) {
        //将s1内元素除了最后一个全部移动到s2
        while(s1.size()>1)
        {
            s2.push(s1.top());
            s1.pop();
        }

        //最后一个元素删除
        s1.pop();

        //将s2内元素全部移动到s1
        while(s2.size()>0)
        {
            s1.push(s2.top());
            s2.pop();
        }
    }

    // Get the front element.
    int peek(void) {
          //将s1内元素除了最后一个全部移动到s2
        while(s1.size()>1)
        {
            s2.push(s1.top());
            s1.pop();
        }

        //保存最后一个元素,然后再移动到s2
        int res=s1.top();
        s2.push(res);
        s1.pop();

        //将s2内元素全部移动到s1
        while(s2.size()>0)
        {
            s1.push(s2.top());
            s2.pop();
        }
        return res;
    }

    // Return whether the queue is empty.
    bool empty(void) {
        return s1.empty();
    }
};

leetcode:

Implement Stack using Queues

Implement the following operations of a stack using queues.

  • push(x) -- Push element x onto stack.
  • pop() -- Removes the element on top of the stack.
  • top() -- Get the top element.
  • empty() -- Return whether the stack is empty.

Notes:

  • You must use only standard operations of a queue -- which means only push
    to back
    peek/pop from frontsize,
    and is empty operations are valid.
  • Depending on your language, queue may not be supported natively. You may simulate a queue by using a list or deque (double-ended queue), as long as you use only standard operations of a queue.
  • You may assume that all operations are valid (for example, no pop or top operations will be called on an empty stack).

class Stack {
public:
    deque<int> q1,q2;
    // Push element x onto stack.
    void push(int x) {
        q1.push_back(x);
    }

    // Removes the element on top of the stack.
    void pop() {
        while(q1.size()>1)//将q1数据除了最后一个外,全部移动到q2
        {
            q2.push_back(q1.front());
            q1.pop_front();
        }

        q1.pop_front();//删除栈顶元素

        while(q2.size()>0)//将q2元素全部移动回到q1
        {
            q1.push_back(q2.front());
            q2.pop_front();
        }
    }

    // Get the top element.
    int top() {
        while(q1.size()>1)//将q1数据除了最后一个外,全部移动到q2
        {
            q2.push_back(q1.front());
            q1.pop_front();
        }

        //获取栈顶元素,将其移动到q2
        int res=q1.front();
        q2.push_back(q1.front());
        q1.pop_front();

        while(q2.size()>0)//将q2元素全部移动回到q1
        {
            q1.push_back(q2.front());
            q2.pop_front();
        }

        return res;
    }

    // Return whether the stack is empty.
    bool empty() {
        return q1.empty();
    }
};

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-09-30 06:25:47

用栈实现队列-用队列实现栈的相关文章

用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型

import java.util.Stack; /**  * 用两个栈来实现一个队列,完成队列的Push和Pop操作. 队列中的元素为int类型.  * @author user  *  *思路:队列是先入先出,栈是先入后出,可以将数据压入第一个栈后,在弹出来压入第二个栈,弹得时候直接从第二个栈弹出,弹出后又将  *第二个栈中的所有数据弹出重新压入的一个栈  */ public class Solution {     Stack<Integer> stack1 = new Stack<

将两个栈变成1个队列

参考博客:http://www.cnblogs.com/kaituorensheng/archive/2013/03/02/2939690.html 1 //前提已知: 2 struct Stack 3 { 4 int top; //栈顶指针 5 int stacksize;//栈的大小 6 int *s; //栈底指针 7 }; 8 void InitStack(Stack *s): 9 void Push(Stack *s, int k); 10 int Pop(*s); 11 int Is

用两个队列模拟实现一个栈的过程

栈具有"后进先出"的特点,即某个元素最后进入栈,却最先出栈:队列具有"先进先出"的特点,即元素从队尾依次进队列,依次从队头出队列:现在用两个队列模拟实现一个栈的过程,详细过程请看下面这张本人制作的gif图: 实现代码: #include <iostream> using namespace std; #include <queue> template <typename T> class Stack { public: void

用两个栈模拟实现一个队列

题目:如何用两个栈模拟实现一个队列?  如果这两个堆栈的容量分别是m和n(m>n),你的方法能保证的队列容量是多少?(这里讨论的是顺序栈,如果是链式栈的话完全没有必要考虑空间) 分析:栈的特点是“后进先出(LIFO)”,而队列的特点是“先进先出(FIFO)”.用两个栈模拟实现一个队列的基本思路是:用一个栈作为存储空间,另一个栈作为输出缓冲区,把元素按顺序压入两栈(模拟的队列),并按此顺序出队并输出即可. 如下图,用容量为m的栈作为存储空间,容量为n的栈作为输出缓冲区,一开始先将n个元素压入(pu

两个栈实现双端队列

一个笔试题,当时竟然没想出来,现在实现下 1 /* 2 用两个栈实现双端队列 3 栈s1,s2. 4 pushback()和popback(),必须在s2为空的情况,把s2的都放s1中 5 pushfront()和popfront(),必须是在s1为空,把s1的都给放到s2中 6 */ 7 #include <iostream> 8 #include <stack> 9 using namespace std; 10 template <typename T> 11 c

小猪的数据结构辅助教程——3.1 栈与队列中的顺序栈

小猪的数据结构辅助教程--3.1 栈与队列中的顺序栈 标签(空格分隔): 数据结构 本节学习路线图与学习要点 学习要点 1.栈与队列的介绍,栈顶,栈底,入栈,出栈的概念 2.熟悉顺序栈的特点以及存储结构 3.掌握顺序栈的基本操作的实现逻辑 4.掌握顺序栈的经典例子:进制变换的实现逻辑 1.栈与队列的概念: 嗯,本节要进行讲解的就是栈 + 顺序结构 = 顺序栈! 可能大家对栈的概念还是很模糊,我们找个常见的东西来拟物化~ 不知道大家喜欢吃零食不--"桶装薯片"就可以用来演示栈! 生产的时

小猪的数据结构辅助教程——3.2 栈与队列中的链栈

小猪的数据结构辅助教程--3.2 栈与队列中的链栈 标签(空格分隔): 数据结构 1.本节引言: 嗯,本节没有学习路线图哈,因为栈我们一般都用的是顺序栈,链栈还是顺带提一提吧, 栈因为只是栈顶来做插入和删除操作,所以较好的方法是将栈顶放在单链表的头部,栈顶 指针与单链表的头指针合二为一~所以本节只是讲下链栈的存储结构和基本操作! 2.链栈的存储结构与示意图 存储结构: typedef struct StackNode { SElemType data; //存放的数据 struct StackN

STL 队列 、优先队列、栈 小结

学长说现在基本上可以开始学习STL中一些标准模板了,今天先总结一下 队列.栈.优先队列 1.队列(queue) 先进先出原则,头文件#include <queue>,定义结构queue<类型>名称;queue<int>q.queue<node>q等: 如: struct node { int x; }f; queue<node>q;//结构体类型队列 q.push(f) //将f压入队列的尾部 node t = q.pop()// 弹出队列的第一

用两个栈模拟无限长队列

思路:设置两个栈,栈1起入队的作用.栈2起出队的作用.入队时,所有元素进栈1,栈满时会通过realloc函数追加存储空间并且保存原来栈1的元素.出队时,先判断栈2是否为空,若为空,则会判断栈1是否为空,栈1为空,则说明队列为空,栈1不为空则将栈1的元素全部出栈并入栈2,栈2满时依然通过realloc追加存储空间,然后栈2元素出栈;若栈2不为空,栈2元素直接出栈 extern void *realloc(void *mem_address, unsigned int newsize);功能:先释放

转---队列、堆、栈、堆栈的区别

队列.堆.栈.堆栈的区别 堆栈:先进后出(就像放在箱子的衣服,先放进去的后拿出来) 队列:先进先出(就像一条路,有一个入口和一个出口,先进去的就可以先出去) 进程中每个线程都有自己的堆栈,这是一段线程创建时保留下的地址区域.我们的"栈内存"即在此. 至于"堆"内存,我个人认为在未用new定义时,堆应该就是未"保留"未"提交"的自由空间,new的功能是在这些自由空间中保留(并提交)出一个地址范围. 栈(Stack)是操作系统在建