java 基于数组实现循环队列

7 篇文章 0 订阅

队列的实现方式可以通过链表和数组,大多数是链表,但是在使用中有不少要求使用数组的数据结构,抱着好奇的心态写了如下数据结构及其相关的方法

/**
 * @author zy
 * @date 2020/6/17 19:31
 */
public class ArrayQueue {
    /*
    长度为maxSize-1
     */
    private int maxSize;
    private int rear;
    private int front;
    private int[] arr;

    public ArrayQueue(int maxSize) {
        this.maxSize = maxSize;
        this.front = 0;
        this.rear = 0;
        this.arr = new int[maxSize];
    }
    public boolean isFull(){
        if ((rear+1) % maxSize == front) {
            return true;
        } else
            return false;
    }
    public boolean isEmpty(){
        return front == rear;
    }
    public boolean enQueue(int data){
        if(this.isFull()){
            throw new RuntimeException("队列已满");
        }
        arr[rear] = data;
        rear = (rear+1)%maxSize;
        System.out.println(rear);
        return true;
    }
    public int deQueue(){
        if(this.isEmpty()){
            throw new RuntimeException("队列为空");
        }
        int val = arr[front];
        front = (front+1)%maxSize;
        return  val;
    }

    public static void main(String[] args) {
        ArrayQueue arrayQueue = new ArrayQueue(2);
        arrayQueue.enQueue(1);
        arrayQueue.enQueue(2);
        System.out.println(arrayQueue.isFull());
    }

}

主要运用了取余的思想使整个队列联系了起来,通过游标的移动解决了问题

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值