数据结构 通俗易懂版 c语言描述—-队列(循环队列)及其基本操作

2022.2.9
循环队及其基本操作
(下一节 栈)

#include
#include
#include
#define ElemType int

typedef struct Queue{
ElemType *data;
int head,rear;
int length,size;
}Queue;

//初始化
Queue * Init(int n){
Queue *p=(Queue *)malloc(sizeof(Queue));
p->head=0,p->rear=0,p->size=0,p->length=n;
p->data=(ElemType *)malloc(sizeof(ElemType)*n);
return p;
}

//判空
bool Empty(Queue *p){
if(p->size==0)
return true;
else
re

数据结构 通俗易懂版 c语言描述—-队列(循环队列)及其基本操作最先出现在Python成神之路

版权声明:
作者:感冒的梵高
链接:https://www.techfm.club/p/16818.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>