鱼C论坛

 找回密码
 立即注册
查看: 578|回复: 3

泛型类

[复制链接]
发表于 2023-11-12 17:38:58 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
java编程完成泛型类CircularQueue(循环队列),CircularQueue的基本功能设计要求:创建循环队列、入队、出队、获取队头元素、判队空、获取队列元素个数。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-11-12 17:39:11 | 显示全部楼层
public class CircularQueue<T> {
    private int front;
    private int rear;
    private int size;
    private int capacity;
    private T[] elements;

    public CircularQueue(int capacity) {
        this.capacity = capacity;
        this.elements = (T[]) new Object[capacity];
        this.front = 0;
        this.rear = 0;
        this.size = 0;
    }

    public void enqueue(T element) {
        if (size == capacity) {
            throw new IllegalStateException("Queue is full");
        }
        elements[rear] = element;
        rear = (rear + 1) % capacity;
        size++;
    }

    public T dequeue() {
        if (size == 0) {
            throw new IllegalStateException("Queue is empty");
        }
        T element = elements[front];
        elements[front] = null;
        front = (front + 1) % capacity;
        size--;
        return element;
    }

    public T getFront() {
        if (size == 0) {
            throw new IllegalStateException("Queue is empty");
        }
        return elements[front];
    }

    public boolean isEmpty() {
        return size == 0;
    }

    public int size() {
        return size;
    }
}

这段代码定义了一个泛型类CircularQueue,实现了循环队列的基本功能。循环队列通过数组实现,使用front和rear指针分别指向队头和队尾,size记录队列中元素的个数。在入队enqueue操作中,首先判断队列是否已满,然后将元素添加到rear指向的位置,并更新rear指针和size;在出队dequeue操作中,首先判断队列是否为空,然后取出front指向的元素,更新front指针和size。获取队头元素getFront、判队空isEmpty和获取队列元素个数size操作则比较简单,直接根据相应的条件进行判断或返回相应的值。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-11-12 17:40:09 | 显示全部楼层
当然,以下是一个简单的泛型类CircularQueue的实现,满足上述的基本功能设计要求:

[/code]java
import java.util.NoSuchElementException;

public class CircularQueue<T> {
    private Object[] queue;
    private int head;
    private int tail;
    private int size;
    private int capacity;

    public CircularQueue(int capacity) {
        this.capacity = capacity;
        queue = new Object[capacity];
        head = 0;
        tail = 0;
        size = 0;
    }

    public void enqueue(T item) {
        if (size == capacity) {
            throw new IllegalStateException("Queue is full");
        }
        queue[tail] = item;
        tail = (tail + 1) % capacity;
        size++;
    }

    public T dequeue() {
        if (size == 0) {
            throw new NoSuchElementException("Queue is empty");
        }
        T item = (T) queue[head];
        head = (head + 1) % capacity;
        size--;
        return item;
    }

    public T peek() {
        if (size == 0) {
            throw new NoSuchElementException("Queue is empty");
        }
        return (T) queue[head];
    }

    public boolean isEmpty() {
        return size == 0;
    }

    public int size() {
        return size;
    }
}
[/code]

这个泛型类CircularQueue实现了循环队列的基本功能,包括创建循环队列、入队、出队、获取队头元素和判队空、获取队列元素个数。你可以根据这个基础上进行进一步扩展和优化。希望这个例子能够帮助你完成泛型类CircularQueue的基本功能设计。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-11-12 20:10:31 | 显示全部楼层
我们可以根据你的需求创建一个泛型的循环队列类。下面是泛型类CircularQueue的一个基本实现:

public class CircularQueue<T> {    private T[] queue;    private int head;    private int tail;    private int size;    @SuppressWarnings("unchecked")    public CircularQueue(int capacity) {        queue = (T[]) new Object[capacity];        head = 0;        tail = 0;        size = 0;    }        public boolean enqueue(T element) {        if (size == queue.length) {            return false; // 队列已满        }        queue[tail] = element;        tail = (tail + 1) % queue.length;        size++;        return true;    }    public T dequeue() {        if (size == 0) {            return null; // 队列为空        }        T result = queue[head];        head = (head + 1) % queue.length;        size--;        return result;    }    public T getFront() {        if (size == 0) {            return null; // 队列为空        }        return queue[head];    }    public boolean isEmpty() {        return size == 0;    }    public int getSize() {        return size;    }}


这个泛型类包含了以下方法:

- CircularQueue(int capacity): 创建指定容量的循环队列。
- enqueue(T element): 将元素添加到队列末尾,如果队列已满,返回false
- dequeue(): 从队列头部删除元素并返回,如果队列为空,返回null
- getFront(): 返回队列头部的元素,如果队列为空,返回null
- isEmpty(): 判断队列是否为空,如果为空,返回true
- getSize(): 返回队列中元素的个数。

请注意,这个循环队列的容量是固定的,如果你需要动态扩容的循环队列,需要进行适当的修改。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-22 01:52

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表