数据结构---队列详解

embedded/2024/11/26 21:12:57/

一、队列的概念与结构

概念:概念:只允许在⼀端进行插入数据操作,在另⼀端进行删除数据操作的特殊线性表,队列具有先进先出FIFO(First In First Out)
**入队列:**进行插入操作的一端称为队尾。
出队列:进行删除操作的一端称为队头。
在这里插入图片描述
实现队列的底层结构一般使用链表,但是数组和链表的结构都可以实现,选用链表的是因为如果使用数组的结构,出队列在数组头上的数据,效率会比较低。

二、队列的常见接口

1、创建队列数据结构

//定义队列节点的结构
typedef struct QueueNode {QDataType data;struct QueueNode* next;
}QueueNode;//定义队列的数据结构
typedef struct Queue {QueueNode* phead;   //队头QueueNode* ptail;   //队尾int size;
}Queue;

这里我们要用两个结构体,首先创建一个链表的结构体,因为我们底层是用链表来实现的,第二个是创建一个队列的结构体

2、队列的初始化

//初始化
void QueueInit(Queue* pq)
{assert(pq);pq->phead = pq->ptail = NULL;pq->size = 0;
}

3、队列的销毁

//销毁
void QueueDestroy(Queue* pq)
{assert(pq);QueueNode* pcur = pq->phead;while (pcur){QueueNode* next = pcur->next;free(pcur);pcur = next;}pq->phead = pq->ptail = NULL;pq->size = 0;
}

这里创建一个指向头节点的指针pcur,然后遍历队列。

4、插入数据

//插入数据
void QueuePush(Queue* pq, QDataType x)
{assert(pq);QueueNode* newnode = (QueueNode*)malloc(sizeof(QueueNode));if (newnode == NULL){perror("malloc fail!");exit(1);}newnode->data = x;newnode->next = NULL;//如果队列为空,队头队尾都是newnodeif (pq->phead == NULL){pq->phead = pq->ptail = newnode;}else {pq->ptail->next = newnode;pq->ptail = pq->ptail->next;}++pq->size;
}

创建一个新的结点将数据插入,判断队列是不是空,是空就把新创建的结点作为队头。

5、判断队列是否为空

//判空
bool QueueEmpty(Queue* pq)
{assert(pq);return pq->phead == NULL;
}

6、队列中的有效数据个数

//有效元素个数
int QueueSize(Queue* pq)
{return pq->size;
}

我们会发现上述代码很简单,其实是因为我们在创建队列这个结构体的时候加了一个int->size,当插入数据的时候我们就++,删除数据的时候就–。如果前面创建队列的数据结构的时候没有加这个,我们要求队列里面的有效数据个数的代码如下:

int QueueSize(Queue* pq)
{assert(pq);int count = 0;QueueNode* pcur = pq->phead;while (pcur){count++;pcur = pcur->next;}return count;
}

是不是很复杂呀!而且时间复杂度也很大哦!

7、删除队列数据

//删除队列数据
void QueuePop(Queue* pq)
{assert(pq);assert(!QueueEmpty(pq));//只有一个节点的情况if (pq->phead == pq->ptail){free(pq->phead);pq->phead = pq->ptail = NULL;}else {QueueNode* next = pq->phead->next;free(pq->phead);pq->phead = next;}--pq->size;
}

这里要注意的是只有一个节点的情况,其他就没什么了。

8、取队头

//取队头
QDataType QueueFront(Queue* pq)
{assert(pq);assert(!QueueEmpty(pq));return pq->phead->data;
}

9、取队尾

//取队尾
QDataType QueueBack(Queue* pq)
{assert(pq);assert(!QueueEmpty(pq));return pq->ptail->data;
}

三、队列代码总览

Queue.h

#pragma once
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <stdbool.h>typedef int QDataType;//定义队列节点的结构
typedef struct QueueNode {QDataType data;struct QueueNode* next;
}QueueNode;//定义队列的数据结构
typedef struct Queue {QueueNode* phead;   //队头QueueNode* ptail; int size;//队尾
}Queue;//队列的初始化
void QueueInit(Queue* pq);
//队列销毁
void QueueDestroy(Queue* pq);
//判断对列是否为空
bool QueueEmpty(Queue* pq);
//队列有效元素个数
int QueueSize(Queue* pq);//向队列中插入数据
void QueuePush(Queue* pq, QDataType x);
//删除队列中的数据
void QueuePop(Queue* pq);
//取队头
QDataType QueueFront(Queue* pq);
//取队尾
QDataType QueueBack(Queue* pq);

Queue.c

#define  _CRT_SECURE_NO_WARNINGS 1
#include "Queue.h"//初始化
void QueueInit(Queue* pq)
{assert(pq);pq->phead = pq->ptail = NULL;pq->size = 0;
}//销毁
void QueueDestroy(Queue* pq)
{assert(pq);QueueNode* pcur = pq->phead;while (pcur){QueueNode* next = pcur->next;free(pcur);pcur = next;}pq->phead = pq->ptail = NULL;pq->size = 0;
}//插入数据
void QueuePush(Queue* pq, QDataType x)
{assert(pq);QueueNode* newnode = (QueueNode*)malloc(sizeof(QueueNode));if (newnode == NULL){perror("malloc fail!");exit(1);}newnode->data = x;newnode->next = NULL;//如果队列为空,队头队尾都是newnodeif (pq->phead == NULL){pq->phead = pq->ptail = newnode;}else {pq->ptail->next = newnode;pq->ptail = pq->ptail->next;}++pq->size;
}//判空
bool QueueEmpty(Queue* pq)
{assert(pq);return pq->phead == NULL;
}//有效元素个数
int QueueSize(Queue* pq)
{/*assert(pq);int count = 0;QueueNode* pcur = pq->phead;while (pcur){count++;pcur = pcur->next;}return count;*/return pq->size;
}//删除队列数据
void QueuePop(Queue* pq)
{assert(pq);assert(!QueueEmpty(pq));//只有一个节点的情况if (pq->phead == pq->ptail){free(pq->phead);pq->phead = pq->ptail = NULL;}else {QueueNode* next = pq->phead->next;free(pq->phead);pq->phead = next;}--pq->size;
}//取队头
QDataType QueueFront(Queue* pq)
{assert(pq);assert(!QueueEmpty(pq));return pq->phead->data;
}//取队尾
QDataType QueueBack(Queue* pq)
{assert(pq);assert(!QueueEmpty(pq));return pq->ptail->data;
}

test.c

#define  _CRT_SECURE_NO_WARNINGS 1
#include "Queue.h"void test()
{Queue q;//ʼQueueInit(&q);//QueuePush(&q, 1);QueuePush(&q, 2);QueuePush(&q, 3);QueuePush(&q, 4);
}int main()
{test();return 0;
}

http://www.ppmy.cn/embedded/140722.html

相关文章

嵌入式系统与单片机工作原理详解

随着现代科技的发展&#xff0c;嵌入式系统已经深入到我们日常生活中的方方面面。无论是智能家居、汽车电子&#xff0c;还是工业控制、医疗设备&#xff0c;都离不开嵌入式系统的支持。而单片机作为嵌入式系统的核心组件&#xff0c;是实现这些功能的关键之一。本文将详细介绍…

设计模式——简单工厂模型、工厂模式、抽象工厂模式、单例模式、代理模式、模板模式

设计模式 面向接口编程&#xff0c;而不是面向实现。这个很重要&#xff0c;也是优雅的、可扩展的代码的第一步。 职责单一原则。每个类都应该只有一个单一的功能&#xff0c;并且该功能应该由这个类完全封装起来。 对修改关闭&#xff0c;对扩展开放。对修改关闭是说&#x…

1、HCIP之RSTP协议与STP相关安全配置

目录 RSTP—快速生成树协议 STP STP的缺点&#xff1a; STP的选举&#xff08;Listening状态中&#xff09;&#xff1a; RSTP P/A&#xff08;提议/同意&#xff09;机制 同步机制&#xff1a; 边缘端口的配置&#xff1a; RSTP的端口角色划分&#xff1a; ensp模拟…

【机器学习】——朴素贝叶斯模型

&#x1f4bb;博主现有专栏&#xff1a; C51单片机&#xff08;STC89C516&#xff09;&#xff0c;c语言&#xff0c;c&#xff0c;离散数学&#xff0c;算法设计与分析&#xff0c;数据结构&#xff0c;Python&#xff0c;Java基础&#xff0c;MySQL&#xff0c;linux&#xf…

《硬件架构的艺术》笔记(七):处理字节顺序

介绍 本章主要介绍字节顺序的的基本规则。&#xff08;感觉偏软件了&#xff0c;不知道为啥那么会放进《硬件架构的艺术》这本书&#xff09;。 定义 字节顺序定义数据在计算机系统中的存储格式&#xff0c;描述存储器中的MSB和LSB的位置。对于数据始终以32位形式保存在存储器…

【ChatGPT】ChatGPT在多领域知识整合中的应用

ChatGPT在多领域知识整合中的应用 随着人工智能技术的发展&#xff0c;ChatGPT以其强大的自然语言处理能力&#xff0c;在知识整合和信息生成方面展现出独特优势。通过将多个领域的知识有机结合&#xff0c;ChatGPT不仅能够回答复杂问题&#xff0c;还能帮助用户处理跨学科的任…

开源 AI 智能名片 2+1 链动模式商城小程序:场景驱动的商业创新与用户价值挖掘

摘要&#xff1a;本文围绕开源 AI 智能名片 21 链动模式商城小程序源码&#xff0c;深入分析了场景中的时间、空间、设备、社交和状态五大核心元素。阐述了各元素的表现形式、应用策略及价值&#xff0c;包括时间元素对业务周期和用户行为的影响及相应营销策略&#xff1b;空间…

[蓝桥杯 2021 省 AB2] 小平方

题目描述 小蓝发现&#xff0c;对于一个正整数 nn 和一个小于 nn 的正整数 vv&#xff0c;将 vv 平方后对 nn 取余可能小于 nn 的一半&#xff0c;也可能大于等于 nn 的一半。 请问&#xff0c;在 11 到 n−1n−1 中, 有多少个数平方后除以 nn 的余数小于 nn 的一半。 例如&…