收藏 分享(赏)

C语言 初始化队列+入队列+出队列+销毁队列.doc

上传人:eukav 文档编号:9478694 上传时间:2019-08-09 格式:DOC 页数:3 大小:34.50KB
下载 相关 举报
C语言 初始化队列+入队列+出队列+销毁队列.doc_第1页
第1页 / 共3页
C语言 初始化队列+入队列+出队列+销毁队列.doc_第2页
第2页 / 共3页
C语言 初始化队列+入队列+出队列+销毁队列.doc_第3页
第3页 / 共3页
亲,该文档总共3页,全部预览完了,如果喜欢就下载吧!
资源描述

1、链队列题目:初始化队列+入队列+出队列+销毁队列(1)初始化一个链队列;(2)在初始化好的链队列中放入数,入队列,完成后要求显示;(3)从队列中出队列,要求显示出来的元素和之后的队列;(4)销毁创建的队列,释放内存;#include#include#define NULL 0typedef int QElemType;typedef struct QNodeQElemType data;struct QNode *next; QNode,*QueuePtr;typedef structQueuePtr front;QueuePtr rear;LinkQueue;void CreateQueue

2、(LinkQueue *Q) int a;QueuePtr p;p=(QueuePtr)malloc(sizeof(QNode);if(!p) printf(“创建失败“) ;else p-next=NULL;Q-front=p;Q-rear=p;scanf(“%d“, while(a!=-1) p=(QueuePtr)malloc(sizeof(QNode);p-next=NULL;if(!p) printf(“创建失败“) ;else p-data=a;Q-rear-next=p;Q-rear=p; scanf(“%d“,void PrintfQueue(LinkQueue *Q)Queu

3、ePtr p;for(p=Q-front-next;p!=NULL;p=p-next)printf(“ %d“,p-data);void EnQueue(LinkQueue *Q,QElemType x)QueuePtr p;p=(QueuePtr)malloc(sizeof(QNode);if(!p) printf(“创建失败“) ;else p-data=x;p-next=NULL;Q-rear-next=p;Q-rear=p;void DeQueue(LinkQueue *Q,QElemType *f) QueuePtr p;if(Q-front=Q-rear) printf(“nErr

4、or“);else p=Q-front-next;*f=p-data;Q-front-next=p-next;if(Q-rear=p) Q-rear=Q-front;free(p);void DeleteQueue(LinkQueue *Q)QueuePtr p;for(;Q-front!=NULL;free(p) p=Q-front;Q-front=Q-front-next;void main() int *f,e;LinkQueue Queue,*Q;e=0;f=Q=printf(“n输入队列的元素依次为:“);CreateQueue(Q);printf(“n初始队列为:“);PrintfQueue(Q);printf(“n要入队的元素为:“);scanf(“%d“,EnQueue(Q,e);printf(“n入队后的队列为:“);PrintfQueue(Q);DeQueue(Q,f);printf(“n出队的元素为:“);printf(“%d“,e);printf(“n出队后的队列为:“);PrintfQueue(Q);DeleteQueue(Q);

展开阅读全文
相关资源
猜你喜欢
相关搜索
资源标签

当前位置:首页 > 企业管理 > 管理学资料

本站链接:文库   一言   我酷   合作


客服QQ:2549714901微博号:道客多多官方知乎号:道客多多

经营许可证编号: 粤ICP备2021046453号世界地图

道客多多©版权所有2020-2025营业执照举报