博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[leedcode 225] Implement Stack using Queues
阅读量:5335 次
发布时间:2019-06-15

本文共 2088 字,大约阅读时间需要 6 分钟。

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 backpeek/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 MyStack {/*    本题是利用两个队列实现栈,有以下几种方法:    1、使用两个栈,当pop时,将其中之一队列的0~size()-2 add到备用队列,然后取第一队列的最后值,此种实现有两种方法:       (1)pop完备用队列可以再复制到第一队列       (2)增加一个cur标记位,指向当前的有效队列    2、如果使用一个队列实现,pop时需要计算此时队列中元素个数len,将len-1个元素add到队列的结尾,返回新的队首    3、使用一个队列,在push元素时,将队列中处在此元素之前的所有值都重新add到队尾,保证对头是最新加入的值,核心代码:       Q.push(x);        int size = Q.size() - 1;        for (int i = 0; i < size; i++) {            Q.push(Q.front());            Q.pop();        }*/    Map
      > temp=new HashMap
      >(); { LinkedList
      t=new LinkedList
      (); LinkedList
      s=new LinkedList
      (); temp.put(0,t); temp.put(1,s); }//注意放到块里,可以初始化 int cur=0; // Push element x onto stack. public void push(int x) { temp.get(cur).add(x); } // Removes the element on top of the stack. public void pop() { while(temp.get(cur).size()>1){ int t=temp.get(cur).remove(); temp.get(1-cur).add(t); } temp.get(cur).remove(); cur=1-cur; } // Get the top element. public int top() { while(temp.get(cur).size()>1){ int t=temp.get(cur).remove(); temp.get(1-cur).add(t); } int res=temp.get(cur).remove(); temp.get(1-cur).add(res); cur=1-cur; return res; } // Return whether the stack is empty. public boolean empty() { return temp.get(cur).isEmpty(); }}

       

转载于:https://www.cnblogs.com/qiaomu/p/4713070.html

你可能感兴趣的文章
Odoo 去掉 恼人的 "上午"和"下午"
查看>>
web@h,c小总结
查看>>
java编程思想笔记(一)——面向对象导论
查看>>
Data Structure 基本概念
查看>>
Ubuntu改坏sudoers后无法使用sudo的解决办法
查看>>
NEYC 2017 游记
查看>>
[搬运] 写给 C# 开发人员的函数式编程
查看>>
Python之旅Day14 JQuery部分
查看>>
core--线程池
查看>>
redux-effect
查看>>
Swift和OC混编
查看>>
Android轻量级的开源缓存框架ASimpleCache
查看>>
他山之石:加载图片的一个小问题
查看>>
shell - 常识
查看>>
mssql sqlserver 使用sql脚本 清空所有数据库表数据的方法分享
查看>>
分层图最短路【bzoj2763】: [JLOI2011]飞行路线
查看>>
linux下编译复数类型引发的错误:expected unqualified-id before '(' token
查看>>
codeforces 1041A Heist
查看>>
字典常用方法
查看>>
Spring Cloud Stream消费失败后的处理策略(三):使用DLQ队列(RabbitMQ)
查看>>