• 数据结构 | 队列的实现


    数据结构 | 队列的实现

    队列的概念及结构

    • 队列:只允许在一端进行插入数据操作,在另一端进行删除数据操作的特殊线性表,队列具有先进先出FIFO(First In First Out)
    • 入队列:进行插入操作的一端称为队尾 出队列:进行删除操作的一端称为队头

    在这里插入图片描述

    队列的实现

    • 队列也可以数组和链表的结构实现,使用链表的结构实现更优一些,因为如果使用数组的结构, 出队列在数组头上出数据,效率会比较低。

    在这里插入图片描述

    队列的实现

    头文件,需要实现的接口

    Queue.h

    #pragma once
    #include
    #include
    #include
    #include
    
    typedef int QDataType;
    
    typedef struct QListNode
    {
    	QDataType val;
    	struct QListNode* next;
    }QNode;
    // 队列的结构
    typedef struct Queue
    {
    	QNode* phead;
    	QNode* ptail;
    	QDataType size;
    }Queue;
    // 初始化队列
    void QueueInit(Queue* pq);
    // 队尾入队列
    void QueuePush(Queue* pq, QDataType x);
    // 队头出队列
    void QueuePop(Queue* pq);
    // 获取队列头部元素
    QDataType QueueFront(Queue* pq);
    // 获取队列队尾元素
    QDataType QueueBack(Queue* pq);
    // 获取队列中有效元素个数
    int QueueSize(Queue* pq);
    // 检测队列是否为空,如果为空返回非零结果,如果非空返回0
    int QueueEmpty(Queue* pq);
    // 销毁队列
    void QueueDestroy(Queue* pq);
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36

    初始化队列

    void QueueInit(Queue* pq)
    {
    	assert(pq);
    	pq->phead = pq->ptail = NULL;
    	pq->size = 0;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    队尾入队列【重点】

    void QueuePush(Queue* pq, QDataType x)
    {
    	assert(pq);
    	QNode* newnode = (QNode*)malloc(sizeof(QNode));
    	if (newnode == NULL)
    	{
    		perror("malloc fail!\n");
    		return;
    	}
    	
    	newnode->val = x;
    	newnode->next = NULL;
    
    	if (pq->ptail == NULL)
    	{
    		pq->phead = pq->ptail = newnode;
    	}
    	else
    	{
    		pq->ptail->next = newnode;
    		pq->ptail = newnode;
    	}
    	pq->size++;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24

    队头出队列【重点】

    void QueuePop(Queue* pq)
    {
    	assert(pq);
    	assert(pq->phead);
    	QNode* del = pq->phead;
    	pq->phead = pq->phead->next;
    	free(del);
    	del = NULL;
    
    	if (pq->phead == NULL)
    		pq->ptail = NULL;
    	pq->size--;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    获取队列头部元素

    QDataType QueueFront(Queue* pq)
    {
    	assert(pq);
    	assert(pq->phead);
    	return pq->phead->val;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    获取队列队尾元素

    QDataType QueueBack(Queue* pq)
    {
    	assert(pq);
    	assert(pq->ptail);
    	return pq->ptail->val;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    获取队列中有效元素个数

    int QueueSize(Queue* pq)
    {
    	assert(pq);
    	return pq->size;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5

    检测队列是否为空

    int QueueEmpty(Queue* pq)
    {
    	assert(pq);
    	return pq->phead == 0;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5

    销毁队列

    void QueueDestroy(Queue* pq)
    {
    	assert(pq);
    	QNode* cur = pq->phead;
    	while (cur != NULL)
    	{
    		QNode* next = cur->next;
    		free(cur);
    		cur = next;
    	}
    	pq->phead = pq->ptail = NULL;
    	pq->size = 0;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    Queue.c

    #include"Queue.h"
    
    // 初始化队列
    void QueueInit(Queue* pq)
    {
    	assert(pq);
    	pq->phead = pq->ptail = NULL;
    	pq->size = 0;
    }
    // 队尾入队列
    void QueuePush(Queue* pq, QDataType x)
    {
    	assert(pq);
    	QNode* newnode = (QNode*)malloc(sizeof(QNode));
    	if (newnode == NULL)
    	{
    		perror("malloc fail!\n");
    		return;
    	}
    	
    	newnode->val = x;
    	newnode->next = NULL;
    
    	if (pq->ptail == NULL)
    	{
    		pq->phead = pq->ptail = newnode;
    	}
    	else
    	{
    		pq->ptail->next = newnode;
    		pq->ptail = newnode;
    	}
    	pq->size++;
    }
    // 队头出队列
    void QueuePop(Queue* pq)
    {
    	assert(pq);
    	assert(pq->phead);
    	QNode* del = pq->phead;
    	pq->phead = pq->phead->next;
    	free(del);
    	del = NULL;
    
    	if (pq->phead == NULL)
    		pq->ptail = NULL;
    	pq->size--;
    }
    // 获取队列头部元素
    QDataType QueueFront(Queue* pq)
    {
    	assert(pq);
    	assert(pq->phead);
    	return pq->phead->val;
    }
    // 获取队列队尾元素
    QDataType QueueBack(Queue* pq)
    {
    	assert(pq);
    	assert(pq->ptail);
    	return pq->ptail->val;
    }
    // 获取队列中有效元素个数
    int QueueSize(Queue* pq)
    {
    	assert(pq);
    	return pq->size;
    }
    // 检测队列是否为空,如果为空返回非零结果,如果非空返回0
    int QueueEmpty(Queue* pq)
    {
    	assert(pq);
    	return pq->phead == 0;
    }
    // 销毁队列
    void QueueDestroy(Queue* pq)
    {
    	assert(pq);
    	QNode* cur = pq->phead;
    	while (cur != NULL)
    	{
    		QNode* next = cur->next;
    		free(cur);
    		cur = next;
    	}
    	pq->phead = pq->ptail = NULL;
    	pq->size = 0;
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89

    好了,队列的实现就到这里结束了,有用的话点个赞吧~~

  • 相关阅读:
    ubuntu 安装腾达U9 无线网卡 驱动-纯搬运-实测有效
    STM32 GPIO
    MySQL专有的SQL语句
    论文字体,Word字体大小对照换算表(字号、磅、英寸、像素)
    论文解读(NWR)《Graph Auto-Encoder via Neighborhood Wasserstein Reconstruction》
    java多种加密和解密方式
    驱动开发day8
    Python Watchdog:高效的文件系统监控
    Python 内置函数详解 (2) 逻辑运算
    持续部署:提高敏捷加速软件交付(内含教程)
  • 原文地址:https://blog.csdn.net/2201_76004325/article/details/134369474