zoukankan      html  css  js  c++  java
  • LeetCode Implement Stack using Queues

    Implement the following operations of a stack using queues.

    • push(x) -- Push element x onto stack.
    • pop() -- Removes the element on top of the stack.
    • top() -- Get the top element.
    • empty() -- Return whether the stack is empty.
    Notes:
    • You must use only standard operations of a queue -- which means only push to backpeek/pop from frontsize, and is empty operations are valid.
    • Depending on your language, queue may not be supported natively. You may simulate a queue by using a list or deque (double-ended queue), as long as you use only standard operations of a queue.
    • You may assume that all operations are valid (for example, no pop or top operations will be called on an empty stack).

    Update (2015-06-11):

    The class name of the Java function had been updated to MyStack instead of Stack.

    思路分析:这题和LeetCode Implement Queue using Stacks相似,思路也相似。用两个队列来模拟一个栈。详细做法是。入栈仅仅须要放入Q1队列尾部。出栈时。把Q1除了最后一个元素之外的全部元素出队列。而且压入Q2队列尾部。然后从Q1中取出最后那个元素。注意要保证Q2为空,它是一个辅助队列。所以我们交换Q1和Q2。

    top和pop方法相似,除了取出Q1中最后那个元素后,再返回它前还要压入到Q2中去。保证这个元素不被丢失,由于我们仅仅想看栈顶元素,并不想真正将它出栈。

    AC Code

    class MyStack {
        
       //Queue
       LinkedList<Integer> q1 = new LinkedList<Integer>();
       LinkedList<Integer> q2 = new LinkedList<Integer>();   
    
        // Push element x onto stack.
        public void push(int x) {
            q1.add(x);
        }
    
        // Removes the element on top of the stack.
        public void pop() {
            //peek(); poll();
            while(q1.size() > 1){
    		    q2.add(q1.poll());
        	}
    	    q1.poll();
    	    //switch 
    	    LinkedList<Integer> tem = q1;
    	    q1 = q2;
    	    q2 = tem;
        }
    
        // Get the top element.
        public int top() {
    	    //peek(); poll();
            while(q1.size() > 1){
    		q2.add(q1.poll());
        	}
        	int res = q1.peek();
        	q2.add(q1.poll());
        	//switch 
        	LinkedList<Integer> tem = q1;
    	    q1 = q2;
    	    q2 = tem;
    	    return res;
        }
    
        // Return whether the stack is empty.
        public boolean empty() {
    	    return q1.isEmpty();
        }
    }
    


  • 相关阅读:
    安装lamp lnmp 一键安装包网址
    mysql float 这个大坑
    今天 运营同事发现的bug记录 上传商品时商品名称带双引号 导致输出页面时 双引号被转义
    excel 导出长数据 变成科学计数 解决办法
    mysql 基本知识 以及优化
    刷算法题记录
    windows 安装svn 要点(非安装步骤)
    《UCD火花集1-2》读后感
    我所经历的的一次问卷调查
    怎样进行批判性的思考
  • 原文地址:https://www.cnblogs.com/yutingliuyl/p/6746275.html
Copyright © 2011-2022 走看看