利用双栈实现队列结构

20 篇文章 0 订阅
17 篇文章 1 订阅

一,封装一个栈的简单结构

  • 栈的最重要的特点相信大家都懂叭 ,如何不太清楚的话可以参考一下: 戳它!.
  • 话不多说,上代码!!!

/**
 * 用数组封装的队列结构
 */
	public class MyStack {
	    int[] data;
	    int top = 0;
	    public MyStack(int size){
	        this.data = new int[size];
	    }
	
	    public void push(int val) throws Exception {//压入方法
	        if(top == this.data.length){
	            throw new Exception("满了");
	        }
	        data[top] = val;
	        top ++ ;
	    }
	
	    public int pop() throws Exception {//弹出方法
	        if(top == 0 ){
	            throw new Exception("为空");
	        }
	        top--;
	        return this.data[top];
	    }
	
	    public boolean isEmpty(){
	        if(this.top == 0)
	            return true;
	        else
	            return false;
	    }
	}

二,利用现有的栈实现队列结构

  • 队列最重要的特点就是先进者先出,而栈的结构是先进者后出,怎样利用栈结构实现呢,相信大部分人都会想到用两个栈结构来实现。原理如图:
    在这里插入图片描述
  • 上代码!!!
	/**
	 * 用两个栈模拟的队列结构
	 */
		public class MyQueue {
		    MyStack stack1;
		    MyStack stack2;
		
		    public MyQueue(int size){
		        stack1 = new MyStack(size);
		        stack2 = new MyStack(size);
		    }
		
		    public void push(int val) throws Exception {//存值
		        stack1.push(val);
		    }
		
		    public int pop() throws Exception {//取值
		        while(!stack1.isEmpty()){
		            stack2.push(stack1.pop());
		        }
		        int result = stack2.pop();
		        while(!stack2.isEmpty()){
		            stack1.push(stack2.pop());
		        }
		        return result;
		    }
		
		}

到此一个简单的队列就算完成了 …
接下来我们来测试一下大致的存数据和取数据这两个功能吧
  • 测试代码

	public class Main {
	    public static void main(String[] args) throws Exception {
	        MyQueue queue = new MyQueue(5);
	        queue.push(1);
	        queue.push(2);
	        queue.push(3);
	        queue.push(4);
	        queue.push(5);
	        int a = queue.pop();
	        int b = queue.pop();
	        int c = queue.pop();
	        int d = queue.pop();
	        int e = queue.pop();
	        System.out.println(a+" "+b+" "+c+ " "+d+" "+e);
	    }
	}

看起来好像是那么回事噢,好的,拜拜~ 溜了溜了~

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值