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

如何用两个栈实现队列

时间:2018-11-24 16:41:41      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:system   auth   用两个   ack   util   tst   script   stack   oid   

import java.util.Stack;

public class QueueTest {

    private Stack<Integer> inStack=new Stack<>();
    private Stack<Integer> outStack=new Stack<>();
    /**
     * 
     * @Description: (入栈) 
     * @author: liyhui
     * @date: 2018年11月24日
     * @param ele
     */
    public void enQueue(int ele ) {
        inStack.push(ele);
    }
    /**
     * 
     * @Description: (出栈) 
     * @author: liyhui
     * @date: 2018年11月24日
     * @param ele
     */
    public Integer deQueue( ) {
        if(outStack.isEmpty()) {
            if(inStack.isEmpty()) {
                return null;
            }
            this.transfer();
        }
        return outStack.pop();
    }
    /**
     * 
     * @Description: (将入栈的元素给出栈) 
     * @author: liyhui
     * @date: 2018年11月24日
     */
    private void transfer() {
        while(!inStack.isEmpty()) {
            outStack.push(inStack.pop());
        }        
    }
    
    public static void main(String[] args) {
        QueueTest test=new QueueTest();
        test.enQueue(1);
        test.enQueue(2);
        test.enQueue(3);
        
        System.out.println(test.deQueue());
        test.enQueue(4);
        System.out.println(test.deQueue());
        System.out.println(test.deQueue());
        System.out.println(test.deQueue());
    }
}

 

如何用两个栈实现队列

标签:system   auth   用两个   ack   util   tst   script   stack   oid   

原文地址:https://www.cnblogs.com/dongma/p/10012275.html

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