《数据结构》队列的创建,进队和出队操作(C语言描述).doc

《数据结构》队列的创建,进队和出队操作(C语言描述).doc

  1. 1、本文档共4页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
《数据结构》队列的创建,进队和出队操作(C语言描述)

#include stdio.h #include stdlib.h 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 capacity); } /* if null return 1. else 0 */ int IsEmpty(Queue queue) { return (queue-Size == 0); } /* * 打印队列。 */ int ShowQueue(Queue queue, int capacity) { int i; printf(queue-Front = %d\n, queue-Front); printf(queue-Rear = %d\n, queue-Rear); if (!IsEmpty(queue)) { for (i = queue-Front; i = queue-Rear; i++) { if (i queue-Rear) { printf(%d, , queue-Array[i]); } else { printf(%d , queue-Array[i]); } } } else { printf(oh, sorry. it is empty.); } } /* 进队 */ void Enqueue(Queue queue, int a, int capacity) { queue-Rear++; queue-Array[queue-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); Enqueue(queue, 12, capacity); //Enqueue(queue, 3, capacity); ShowQueue(queue, capacity

文档评论(0)

xcs88858 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

版权声明书
用户编号:8130065136000003

1亿VIP精品文档

相关文档