博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
implement-stack-using-queues(easy,但也有思考价值)
阅读量:5888 次
发布时间:2019-06-19

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

https://leetcode.com/problems/implement-stack-using-queues/

还有种方法,就是利用同一个队列,知道队列长度前提下,把内容从头到尾,再向尾部依次重推一下。

package com.company;import java.util.Deque;import java.util.LinkedList;import java.util.Queue;class Solution {    Queue[] queues;    int cur;    Solution() {        queues = new LinkedList[2];        queues[0] = new LinkedList
(); queues[1] = new LinkedList
(); cur = 0; } // Push element x onto stack. public void push(int x) { queues[cur].offer(x); } // Removes the element on top of the stack. public void pop() { change(true); } // Get the top element. public int top() { return change(false); } private int change(boolean pop) { int next = (cur + 1) % 2; int num = (int)queues[cur].poll(); while (!queues[cur].isEmpty()) { queues[next].offer(num); num = (int)queues[cur].poll(); } if (!pop) { queues[next].offer(num); } cur = next; return num; } // Return whether the stack is empty. public boolean empty() { return queues[cur].isEmpty(); }}public class Main { public static void main(String[] args) throws InterruptedException { System.out.println("Hello!"); Solution solution = new Solution(); // Your Codec object will be instantiated and called as such: solution.push(1); solution.push(2); solution.push(3); int ret = solution.top(); System.out.printf("ret:%d\n", ret); solution.pop(); ret = solution.top(); System.out.printf("ret:%d\n", ret); solution.pop(); ret = solution.top(); System.out.printf("ret:%d\n", ret); System.out.println(); }}

 

转载于:https://www.cnblogs.com/charlesblc/p/6058471.html

你可能感兴趣的文章
VUEJS开发规范
查看>>
Android系统的创世之初以及Activity的生命周期
查看>>
人人都会数据采集- Scrapy 爬虫框架入门
查看>>
Android网络编程11之源码解析Retrofit
查看>>
韩国SK电讯宣布成功研发量子中继器
查看>>
TCP - WAIT状态及其对繁忙的服务器的影响
查看>>
安全预警:全球13.5亿的ARRIS有线调制解调器可被远程攻击
查看>>
麦子学院与阿里云战略合作 在线教育领军者技术实力被认可
查看>>
正确看待大数据
查看>>
Facebook通过10亿单词构建有效的神经网络语言模型
查看>>
发展大数据不能抛弃“小数据”
查看>>
中了WannaCry病毒的电脑几乎都是Win 7
查看>>
学生机房虚拟化(九)系统操作设计思路
查看>>
nginx报错pread() returned only 0 bytes instead of 4091的分析
查看>>
质数因子
查看>>
Spring源码浅析之事务(四)
查看>>
[转载] Live Writer 配置写 CSDN、BlogBus、cnBlogs、163、sina 博客
查看>>
SQL:连表查询
查看>>
MySQL日期函数、时间函数总结(MySQL 5.X)
查看>>
c语言用尾插法新建链表和输出建好的链表
查看>>