美文网首页
算法练习(81): 一个队列实现的栈(1.4.28)

算法练习(81): 一个队列实现的栈(1.4.28)

作者: kyson老师 | 来源:发表于2017-12-18 18:33 被阅读67次

    本系列博客习题来自《算法(第四版)》,算是本人的读书笔记,如果有人在读这本书的,欢迎大家多多交流。为了方便讨论,本人新建了一个微信群(算法交流),想要加入的,请添加我的微信号:zhujinhui207407 谢谢。另外,本人的个人博客 http://www.kyson.cn 也在不停的更新中,欢迎一起讨论

    算法(第4版)

    知识点

    • 一个队列实现的栈

    题目

    1.4.28 一个队列实现的栈。使用一个队列实现一个栈,使得每个栈操作所需的队列操作数量为线性级别。


    1.4.28 Stack with a queue. Implement a stack with a single queue so that each stack operations takes a linear number of queue operations. Hint : To delete an item, get all of the elements on the queue one at a time, and put them at the end, except for the last one which you should delete and return. (This solution is admittedly very inefficient.)

    相关文章

      网友评论

          本文标题: 算法练习(81): 一个队列实现的栈(1.4.28)

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