IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 游戏开发 -> java模拟实现队列(Queue) -> 正文阅读

[游戏开发]java模拟实现队列(Queue)

目录

单链表实现队列(Queue)

数组实现循环队列(Queue)

622. 设计循环队列LeetCode题


单链表实现队列(Queue)

/**
 * 单链表实现队列
 */
class Node {
    int val;
    Node next;
    public Node(int val){
        this.val = val;
    }
}
public class MyQueue {
    public Node front;//对头
    public Node rear;//队尾
    /**
     * 入队操作,队尾入
     * 参数来源于Node类型,要慢慢留意
     * @param val
     */
    public void offer(int val) {
        Node node = new Node(val);
        if(isEmpty()){//队列为空
            this.front = node;
            this.rear = node;
        }
        else
        {
            this.rear.next = node;
            this.rear = node;//队尾后移
        }
    }
    //是否为空
    public boolean isEmpty(){
        //return this.front == this.rear;有问题,也许都为null,也许指向同一个节点
        return this.front == null;
    }

    /**
     * 出队操作,对头出
     * @return
     */
    public int poll(){
        if(isEmpty()) {//也许队头的值为-1呢,抛异常
            throw new RuntimeException("对列为空,无法出栈!!!");//最好抛自定义异常
        }
        else//不为空,得考虑队列只有一个节点或多个节点
        {
            int temp = this.front.val;//存储val值
            if(front == rear){//对列只有一个节点
                this.front = null;
                this.rear = null;
                return temp;
            }
            else{
                this.front = this.front.next;
                return temp;
            }
        }

    }
    //返回对头元素
    public int peek(){
        if(isEmpty()) {//也许队头的值为-1呢???
            throw new RuntimeException("对列为空,无法返回队头元素!");//最好抛自定义异常
        }
            return this.front.val;
    }
}

数组实现循环队列(Queue)

思路:损失一个数组空间来判断队列是否为满

/**
 * MyCircularQueue(k): 构造器,设置队列长度为 k 。
 * Front: 从队首获取元素。如果队列为空,返回 -1 。
 * Rear: 获取队尾元素。如果队列为空,返回 -1 。
 * enQueue(value): 向循环队列插入一个元素。如果成功插入则返回真。
 * deQueue(): 从循环队列中删除一个元素。如果成功删除则返回真。
 * isEmpty(): 检查循环队列是否为空。
 * isFull(): 检查循环队列是否已满。
 */
public class MyCircularQueue {
   public int front = 0;
   public int rear = 0;
   int[] elem;
    public MyCircularQueue(int k) {
        this.elem = new int[k];
    }

    public boolean enQueue(int value) {
        if(isFull()){
            return false;
        }
        this.elem[this.rear] = value;
        //this.rear = this.rear + 1;//得进行循环
        this.rear = (this.rear + 1) % elem.length;
        return true;
    }

    public boolean deQueue() {
        if(isEmpty()){
            return false;
        }
        //this.front = this.front + 1;
        this.front = (this.front + 1) % this.elem.length;
        return true;
    }

    public int Front() {
        if(isEmpty()){
            return -1;
        }
        return this.elem[this.front];
    }

    public int Rear() {
        if(isEmpty()){
            return -1;
        }
        //return this.elem[this.rear];错误写法
        if(this.rear == 0){
            return elem[this.elem.length  - 1];
        }
        return elem[this.rear - 1];
    }
    /**
    *在循环队列中,rear指向的是下一个可以存放元素的位置,
    *如果front==rear,那不就代表为空了,但是在链表中可不一样
    */
    public boolean isEmpty() {
        if(this.front == this.rear){
            return true;
        }
        return false;
    }

    public boolean isFull() {
        //if(this.rear + 1 == this.front){//错误写法
        if((this.rear + 1) % this.elem.length == this.front){
            return true;
        }
        return false;
    }
}

622. 设计循环队列LeetCode题

当时用循环队列去解题时,会发现代码无法通过,因为数组中的一个空间被用作区分队列是否为满了,因此在开辟数组空间时,需要k+1个长度的空间。

  游戏开发 最新文章
6、英飞凌-AURIX-TC3XX: PWM实验之使用 GT
泛型自动装箱
CubeMax添加Rtthread操作系统 组件STM32F10
python多线程编程:如何优雅地关闭线程
数据类型隐式转换导致的阻塞
WebAPi实现多文件上传,并附带参数
from origin ‘null‘ has been blocked by
UE4 蓝图调用C++函数(附带项目工程)
Unity学习笔记(一)结构体的简单理解与应用
【Memory As a Programming Concept in C a
上一篇文章      下一篇文章      查看所有文章
加:2022-03-21 21:25:47  更:2022-03-21 21:26:31 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2025年1日历 -2025/1/16 18:50:51-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码