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

剑指offer---用两个栈实现队列

时间:2020-04-14 22:25:16      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:while   两个栈   class   ISE   off   col   nbsp   用两个   元素   

题目描述

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

public class Solution {
    Stack<Integer> stack1 = new Stack<Integer>();
    Stack<Integer> stack2 = new Stack<Integer>();
    
    public void push(int node) {
        //向stack2 push时,先判断Stack2是否为空,
          //如果不为空则将stack2的元素出栈,放进stack1中
         while(!stack2.isEmpty()){
              stack1.push(stack2.pop());
         }
         //stack2为空,则直接放入元素
         stack2.push(node);
        
    }
    
    public int pop() {
        //栈2元素出栈时先判断栈1是否为空
         //如果不为空则将stack1的元素出栈,放进stack2中
         while(!stack1.isEmpty()){
             stack2.push(stack1.pop());
         }
         //栈1为空,此时栈2直接出栈
         return stack2.pop();
    }
}

 

剑指offer---用两个栈实现队列

标签:while   两个栈   class   ISE   off   col   nbsp   用两个   元素   

原文地址:https://www.cnblogs.com/goodtest2018/p/12701480.html

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