当前位置:   article > 正文

队列——“数据结构与算法”_循环队列的存储空间为q(1:200),初始状态为

循环队列的存储空间为q(1:200),初始状态为

各位CSDN的uu们你们好呀,又好久不见啦,最近有点摆烂,甚是惭愧!!!!今天,小雅兰的内容是队列,下面,让我们进入队列的世界吧!!!


队列


队列的概念及结构

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

入队列:进行插入操作的一端称为队尾

出队列:进行删除操作的一端称为队头

 如果:

入队列:1 2 3 4  那么,出队列:1 2 3 4

 DFS——深度优先遍历——递归/栈实现非递归

 BFS——广度优先遍历——队列


几个题目:

1.循环队列的存储空间为 Q(1:100) ,初始状态为 front=rear=100 。经过一系列正常的入队与退队操作后, front=rear=99 ,则循环队列中的元素个数为( D )

A 1

B 2

C 99

D 0或者100

2.以下( B )不是队列的基本运算?

A 从队尾插入一个新元素

B 从队列中删除第i个元素

C 判断一个队列是否为空

D 读取队头元素的值

3.现有一循环队列,其队头指针为front,队尾指针为rear;循环队列长度为N。其队内有效长度为?(假设队头不存放数据) ( B )

A (rear - front + N) % N + 1

B (rear - front + N) % N

C (rear - front) % (N + 1)

D (rear - front + N) % (N - 1)


队列的实现 

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

 定义两个结构体,一个表示队列的结点的结构,一个表示队列的结构

  1. typedef int QDataType;
  2. // 链式结构:表示队列
  3. typedef struct QueueNode
  4. {
  5. struct QueueNode* next;
  6. QDataType data;
  7. }QueueNode;
  8. // 队列的结构
  9. typedef struct Queue
  10. {
  11. QueueNode* phead;//头指针
  12. QueueNode* ptail;//尾指针
  13. int size;
  14. }Queue;

初始化队列:

  1. // 初始化队列
  2. void QueueInit(Queue* pq)
  3. {
  4. assert(pq);
  5. pq->phead = NULL;
  6. pq->ptail = NULL;
  7. pq->size = 0;
  8. }

销毁队列:

一个结点一个结点的释放

  1. // 销毁队列
  2. void QueueDestroy(Queue* pq)
  3. {
  4. assert(pq);
  5. QueueNode* cur = pq->phead;
  6. while (cur != NULL)
  7. {
  8. QueueNode* next = cur->next;
  9. free(cur);
  10. cur = next;
  11. }
  12. pq->phead = pq->ptail = NULL;
  13. pq->size = 0;
  14. }

队尾入队列:

  1. // 队尾入队列
  2. void QueuePush(Queue* pq, QDataType x)
  3. {
  4. assert(pq);
  5. QueueNode* newnode = (QueueNode*)malloc(sizeof(QueueNode));
  6. if (newnode == NULL)
  7. {
  8. perror("malloc fail");
  9. return;
  10. }
  11. newnode->data = x;
  12. newnode->next = NULL;
  13. //是空队列的情况
  14. if (pq->ptail == NULL)
  15. {
  16. assert(pq->phead == NULL);
  17. pq->phead = pq->ptail = newnode;
  18. }
  19. else
  20. {
  21. pq->ptail->next = newnode;
  22. pq->ptail = newnode;
  23. }
  24. pq->size++;
  25. }

检测队列是否为空:

  1. // 检测队列是否为空
  2. bool QueueEmpty(Queue* pq)
  3. {
  4. assert(pq);
  5. return pq->phead == NULL && pq->ptail == NULL;
  6. }

队头出队列:

  1. // 队头出队列
  2. void QueuePop(Queue* pq)
  3. {
  4. assert(pq);
  5. assert(!QueueEmpty(pq));
  6. //1.一个结点
  7. //2.多个结点
  8. if (pq->phead->next == NULL)
  9. {
  10. free(pq->phead);
  11. pq->phead = pq->ptail = NULL;
  12. }
  13. else
  14. {
  15. //相当于头删
  16. QueueNode* next = pq->phead->next;
  17. free(pq->phead);
  18. pq->phead = next;
  19. }
  20. pq->size--;
  21. }

获取队列头部元素:

  1. // 获取队列头部元素
  2. QDataType QueueFront(Queue* pq)
  3. {
  4. assert(pq);
  5. assert(!QueueEmpty(pq));
  6. return pq->phead->data;
  7. }

 获取队列尾部元素:

  1. // 获取队列队尾元素
  2. QDataType QueueBack(Queue* pq)
  3. {
  4. assert(pq);
  5. assert(!QueueEmpty(pq));
  6. return pq->ptail->data;
  7. }

获取队列中有效元素的个数:

  1. // 获取队列中有效元素个数
  2. int QueueSize(Queue* pq)
  3. {
  4. assert(pq);
  5. return pq->size;
  6. }

队列是一种特殊的线性表,特殊之处在于它只允许在表的前端(front)进行删除操作,而在表的后端(rear)进行插入操作,和栈一样,队列是一种操作受限制的线性表。进行插入操作的端称为队尾,进行删除操作的端称为队头。队列中没有元素时,称为空队列。


队列的数据元素又称为队列元素。在队列中插入一个队列元素称为入队,从队列中删除一个队列元素称为出队。因为队列只允许在一端插入,在另一端删除,所以只有最早进入队列的元素才能最先从队列中删除,故队列又称为先进先出(FIFO—first in first out)线性表。

顺序队列
建立顺序队列结构必须为其静态分配或动态申请一片连续的存储空间,并设置两个指针进行管理。一个是队头指针front,它指向队头元素;另一个是队尾指针rear,它指向下一个入队元素的存储位置,每次在队尾插入一个元素是,rear增1;每次在队头删除一个元素时,front增1。随着插入和删除操作的进行,队列元素的个数不断变化,队列所占的存储空间也在为队列结构所分配的连续空间中移动。当front=rear时,队列中没有任何元素,称为空队列。当rear增加到指向分配的连续空间之外时,队列无法再插入新元素,但这时往往还有大量可用空间未被占用,这些空间是已经出队的队列元素曾经占用过得存储单元。

顺序队列中的溢出现象:
(1) "下溢"现象:当队列为空时,做出队运算产生的溢出现象。“下溢”是正常现象,常用作程序控制转移的条件。
(2)"真上溢"现象:当队列满时,做进栈运算产生空间溢出的现象。“真上溢”是一种出错状态,应设法避免。
(3)"假上溢"现象:由于入队和出队操作中,头尾指针只增加不减小,致使被删元素的空间永远无法重新利用。当队列中实际的元素个数远远小于向量空间的规模时,也可能由于尾指针已超越向量空间的上界而不能做入队操作。该现象称为"假上溢"现象。

循环队列
在实际使用队列时,为了使队列空间能重复使用,往往对队列的使用方法稍加改进:无论插入或删除,一旦rear指针增1或front指针增1 时超出了所分配的队列空间,就让它指向这片连续空间的起始位置。自己真从MaxSize-1增1变到0,可用取余运算rear%MaxSize和front%MaxSize来实现。这实际上是把队列空间想象成一个环形空间,环形空间中的存储单元循环使用,用这种方法管理的队列也就称为循环队列。除了一些简单应用之外,真正实用的队列是循环队列。

在循环队列中,当队列为空时,有front=rear,而当所有队列空间全占满时,也有front=rear。为了区别这两种情况,规定循环队列最多只能有MaxSize-1个队列元素,当循环队列中只剩下一个空存储单元时,队列就已经满了。因此,队列判空的条件时front=rear,而队列判满的条件时front=(rear+1)%MaxSize。


测试一下队列的功能:

  1. #include"Queue.h"
  2. int main()
  3. {
  4. Queue p;
  5. QueueInit(&p);
  6. QueuePush(&p, 1);
  7. QueuePush(&p, 2);
  8. printf("队头元素:%d\n", QueueFront(&p));
  9. QueuePop(&p);
  10. QueuePush(&p, 3);
  11. QueuePush(&p, 4);
  12. printf("队列中元素个数:%d\n", QueueSize(&p));
  13. while (!QueueEmpty(&p))
  14. {
  15. printf("队头元素:%d\n", QueueFront(&p));
  16. QueuePop(&p);
  17. }
  18. QueueDestroy(&p);
  19. return 0;
  20. }


源代码如下:

Queue.h的内容:

  1. #pragma once
  2. #include<stdio.h>
  3. #include<stdlib.h>
  4. #include<stdbool.h>
  5. #include<assert.h>
  6. typedef int QDataType;
  7. // 链式结构:表示队列
  8. typedef struct QueueNode
  9. {
  10. struct QueueNode* next;
  11. QDataType data;
  12. }QueueNode;
  13. // 队列的结构
  14. typedef struct Queue
  15. {
  16. QueueNode* phead;//头指针
  17. QueueNode* ptail;//尾指针
  18. int size;
  19. }Queue;
  20. // 初始化队列
  21. void QueueInit(Queue* pq);
  22. // 销毁队列
  23. void QueueDestroy(Queue* pq);
  24. // 队尾入队列
  25. void QueuePush(Queue* pq, QDataType x);
  26. // 队头出队列
  27. void QueuePop(Queue* pq);
  28. // 获取队列头部元素
  29. QDataType QueueFront(Queue* pq);
  30. // 获取队列队尾元素
  31. QDataType QueueBack(Queue* pq);
  32. // 获取队列中有效元素个数
  33. int QueueSize(Queue* pq);
  34. // 检测队列是否为空
  35. bool QueueEmpty(Queue* pq);

Queue.c的内容:

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

好啦,小雅兰今天的队列的学习内容就到这里啦,还要继续加油噢!!!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/461514
推荐阅读
相关标签
  

闽ICP备14008679号