当前位置:   article > 正文

循环队列基本操作代码(C语言)_循环队列的基本操作代码

循环队列的基本操作代码
#include <stdio.h>
#include <stdlib.h>
#include<stdbool.h>
#define MaxSize 50

typedef int ElemType;


typedef struct SqQueue
{
   
    ElemType  data[MaxSize];
    int front;//定义头指针
    int rear; //定义尾指针
} SqQueue;

//初始化队列
bool InitQueue(SqQueue *q)
{
   
    q->front=0;
    q->rear=0; //头尾指向0号位置
    return true;
}

//清空队列
bool ClearQueue(SqQueue *q)
{
   
    q->front=q->rear=0;
    return true;
}

//判断队列是否为空,初始状态时,队列全部移走后,头和尾指针这两种状态在一起
bool QueueEmpty(SqQueue 
  • 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
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/喵喵爱编程/article/detail/798842
推荐阅读
相关标签
  

闽ICP备14008679号