全文预览已结束
下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
#include #include struct QueueRecord; typedef struct QueueRecord *Queue; #define MinQueueSize (5) struct QueueRecord int Capacity; int Front; int Rear; int Size; int *Array; ; /* * 创建 队列。 */ Queue CreateQueue(int capacity) Queue queue; queue = (Queue)malloc(sizeof(Queue); if (queue = NULL) printf(out of space!n); queue-Array = (int *)malloc(capacity * sizeof(int); if (queue-Array = NULL) printf(out of space!n); queue-Size = 0; queue-Rear = -1; queue-Front = 0; return queue; /* * if full ,return 0; else return 1; */ int IsFull(Queue queue, int capacity) return (queue-Size Size = 0); /* * 打印队列。 */ int ShowQueue(Queue queue, int capacity) int i; printf(queue-Front = %dn, queue-Front); printf(queue-Rear = %dn, queue-Rear); if (!IsEmpty(queue) for (i = queue-Front; i Rear; i+) if (i Rear) printf(%d, , queue-Arrayi); else printf(%d , queue-Arrayi); else printf(oh, sorry. it is empty.); /* 进队 */ void Enqueue(Queue queue, int a, int capacity) queue-Rear+; queue-Arrayqueue-Rear = a; queue-Size+; if (IsFull(queue, capacity) if (queue-Rear = capacity) queue-Rear = 0; /* 出队 */ void Dequeue(Queue queue, int capacity) queue-Front+; queue-Size-; if (IsFull(queue, capacity) if (queue-Front= capacity) queue-Front = 0; int main(void) Queue queue; int capacity = 10; if (capacity MinQueueSize) printf(it is too small.n); queue = CreateQueue(capacity); Enqueue(queue, 1, capacity); Enqueue(queue, 2, capacity); Enqueue(queue, 3, capacity); Enqueue(queue, 4, capacity); Enqueue(queue, 5, capacity); Enqueue(queue, 6, capacity); Dequeue(queue, capacity); Enqueu
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 北海事业单位招聘考试真题及答案解析-4
- 乌海市市级机关选调真题2024
- 二级建造师-法规-模考点题2【小嗨视频课堂】
- 2025年MRI技师上岗证真题
- 2025年见证取样员考试试题及答案
- 员工关系管理习题及参考答案2
- 历年银行面试常问的问题
- 2025年广西公务员考试申论真题及解析(A卷)
- 全考点煤矿井下爆破作业模拟考试题库及答案
- -试验检测师之道路工程通关试题库(有答案)
- 2025年腹腔穿刺术课件 (1)2
- 临床试验中TMF的管理
- 科层制的优缺点
- 项目工期管理
- DB32∕T 1199-2008 气象灾害 定义与分级
- 地基强夯合同范例
- 国际经济与贸易专业生涯发展展示
- 电力工程施工及设备租赁方案
- 市政工程安全专项施工方案
- 放射科危急值报告制度
- 卫生院护理组织管理工作方案及职责
评论
0/150
提交评论