首页 > 代码库 > 用两个栈实现队列
用两个栈实现队列
用两个栈来实现一个队列,完成队列的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) { } }
用两个栈实现队列
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。