摊销分析:具有两个堆栈的 FIFO
如何使用两个堆栈实现 FIFO 队列,以便每个 FIFO 操作都需要摊销常数时间?
How to implement a FIFO queue using two stacks so that each FIFO operation takes amortized constant time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
冒着给出整个答案的风险(我希望练习是编写代码,而不是仅仅给出这个答案)...
推入一个以排队,弹出另一个以进行轮询。当输出堆栈为空时,将所有项目从输入堆栈一一移至输出堆栈。
At the risk of giving the whole answer (I'm hoping the exercise is to write the code, not to just give this answer)...
Push onto one to enqueue, pop off of the other to poll. When the output stack is empty, move all of the items one-by-one from the input stack to the output stack.
像这样的东西:
Something like that: