码迷,mamicode.com
首页 > 编程语言 > 详细

数组模拟队列

时间:2020-09-17 13:59:28      阅读:24      评论:0      收藏:0      [点我收藏+]

标签:技术   min   校验   runtime   front   使用   class   load   mamicode   

技术图片

 

技术图片

 

技术图片

 

 

/**
 * 使用数组模拟队列
 * @author Administrator
 */

public class ArrayQueueDemo {
    public static void main(String[] args) {
        ArrayQueue arrayQueue = new ArrayQueue(3);
        arrayQueue.addQueue(2);
        arrayQueue.addQueue(4);
        arrayQueue.addQueue(6);
        arrayQueue.showQueue();
    }
    
}

//使用数组模拟一个有序队列
class ArrayQueue{
    private int front = -1;//队列头
    private int rear = -1;//队列尾
    private int maxSize;//表示数组的最大容量
    private int[] arr ;//该数组用于存放数据,模拟队列
    
    //构造函数初始化队列
    public ArrayQueue(int maxSize){
        this.maxSize = maxSize;
        arr = new int[maxSize];
    }
    
    //判断是否满了
    public boolean fullQueue(){
        return rear == maxSize-1;
    }
    
    //判断是否为空
    public boolean isEmpty(){
        return rear == front;
    }
    
//添加元素
    public void addQueue(int n){
        //校验是否满了
        if (fullQueue()) {
            System.out.println("队列已经满了");
            return;
        }
        //添加到队列中
        rear++;
        arr[rear] = n;
    }
    
    //去除元素
    public int removeQueue(){
        //校验是否为空
        if (isEmpty()) {
            throw new RuntimeException("当前为空不能去除元素!");
        }
        front++;
        return arr[front]; 
    }
    
    public void showQueue(){
        if (!isEmpty()) {
            for (int i = 0; i < arr.length; i++) {
                System.err.println(arr[i]);
            }
        }
        
    }
    
     
}

 

数组模拟队列

标签:技术   min   校验   runtime   front   使用   class   load   mamicode   

原文地址:https://www.cnblogs.com/keiyoumi520/p/13617345.html

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