美文网首页
232. Implement Queue using Stack

232. Implement Queue using Stack

作者: 我是你的果果呀 | 来源:发表于2016-12-02 05:43 被阅读0次

    Implement the following operations of a queue using stacks.
    push(x) -- Push element x to the back of queue.
    pop() -- Removes the element from in front of queue.
    peek() -- Get the front element.
    empty() -- Return whether the queue is empty.

    只在push方法里倒腾一下数据, 原理相似于用队列实现栈!

    相关文章

      网友评论

          本文标题:232. Implement Queue using Stack

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