码迷,mamicode.com
首页 > 其他好文 > 详细

使用一个队列完成一个栈

时间:2018-01-25 23:13:06      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:and   bubuko   image   queue   div   eve   off   element   rem   

2018-01-25 21:11:02

题目描述:

技术分享图片

问题求解:

队列的特点是先进先出,栈的特点是先进后出。如果在push的时候,对队列中的元素进行reverse,那么就可以很容易的进行pop(),top(),empty()等操作。

class MyStack {
    Queue<Integer> queue;

    /** Initialize your data structure here. */
    public MyStack() {
        queue = new LinkedList<>();
    }
    
    /** Push element x onto stack. */
    public void push(int x) {
        int size = queue.size();
        queue.offer(x);
        while (size-- > 0) {
            queue.offer(queue.poll());
        }
        
    }
    
    /** Removes the element on top of the stack and returns that element. */
    public int pop() {
        return queue.poll();
    }
    
    /** Get the top element. */
    public int top() {
        return queue.peek();
    }
    
    /** Returns whether the stack is empty. */
    public boolean empty() {
        return queue.isEmpty();
    }
}

 

使用一个队列完成一个栈

标签:and   bubuko   image   queue   div   eve   off   element   rem   

原文地址:https://www.cnblogs.com/TIMHY/p/8353353.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!