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

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

https://leetcode.com/problems/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 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).

解题思路:

用了俩queue,思路就很明确了。需要peek或者pop的时候,将一个queue中的元素插入另一个queue,直到只剩一个了,这样才能获得尾端的元素。

也可以只用一个queue,但是在push的时候,就将所有元素立刻反向。

崩溃的是,Queue这个interface,居然没有empty()的方法,连size()的方法都没有。

class MyStack {    LinkedList
queue1 = new LinkedList
(); LinkedList
queue2 = new LinkedList
(); // Push element x onto stack. public void push(int x) { if(queue1.size() > 0) { queue1.offer(x); } else { queue2.offer(x); } } // Removes the element on top of the stack. public void pop() { if(queue1.size() == 0) { LinkedList
temp = queue1; queue1 = queue2; queue2 = temp; } while(queue1.size() > 1) { queue2.offer(queue1.poll()); } queue1.poll(); } // Get the top element. public int top() { if(queue1.size() == 0){ LinkedList
temp = queue1; queue1 = queue2; queue2 = temp; } while(queue1.size() > 1) { queue2.offer(queue1.poll()); } int res = queue1.peek(); queue2.offer(queue1.poll()); return res; } // Return whether the stack is empty. public boolean empty() { return queue1.size() == 0 && queue2.size() == 0; }}

 

转载于:https://www.cnblogs.com/NickyYe/p/4573541.html

你可能感兴趣的文章
【ASP.NET】从服务器端注册客户端脚本
查看>>
Infix to Postfix Expression
查看>>
SELECT LOCK IN SHARE MODE and FOR UPDATE
查看>>
Perl/Nagios – Can’t locate utils.pm in @INC
查看>>
目录导航「深入浅出ASP.NET Core系列」
查看>>
简易爬虫(爬取本地数据)
查看>>
python 进程间通信
查看>>
深拷贝 vs 浅拷贝 释放多次
查看>>
Javascript 有用参考函数
查看>>
点群的判别(三)
查看>>
GNSS 使用DFT算法 能量损耗仿真
查看>>
【转】Simulink模型架构指导
查看>>
MYSQL数据库的导出的几种方法
查看>>
SQL Server-5种常见的约束
查看>>
硬件之美
查看>>
[转载]java开发中的23种设计模式
查看>>
表格的拖拽功能
查看>>
函数的形参和实参
查看>>
文字过长 用 ... 表示 CSS实现单行、多行文本溢出显示省略号
查看>>
1Caesar加密
查看>>