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

用两个栈实现队列

时间:2017-03-02 15:18:17      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:ret   turn   ring   algorithm   imp   div   void   两个栈实现队列   元素   

用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型。

package com.algorithm;

import java.util.Stack;
//用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型。
public class StackIntoQueen5 {
    Stack<Integer> stack1 = new Stack<Integer>();
    Stack<Integer> stack2 = new Stack<Integer>();
    //我的思路 每次都将当前stack1的东西 push到另外一个stack2中,然后放入stack1中放入最新的值,再将
    //stack2的值放入stack1中
    //运行时间:32ms
    //占用内存:629k
    public void push(int node) {
        if(stack1.isEmpty()) {
            stack1.push(node);
        }else{
            while(!stack1.isEmpty()){
                stack2.push(stack1.pop());
            }
            stack1.push(node);
            while(!stack2.isEmpty()){
                stack1.push(stack2.pop());
            }
        }
    }
    
    public int pop() {
        return stack1.pop();
    }
    public static void main(String[] args) {
        
    }
}

 

用两个栈实现队列

标签:ret   turn   ring   algorithm   imp   div   void   两个栈实现队列   元素   

原文地址:http://www.cnblogs.com/fankongkong/p/6490628.html

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