2022年队列应用_约瑟夫环问题 .pdf
《2022年队列应用_约瑟夫环问题 .pdf》由会员分享,可在线阅读,更多相关《2022年队列应用_约瑟夫环问题 .pdf(3页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、链式队列LinkQueue.h #include #include usingnamespace std; typedefstruct node DataType data; struct node *next; Qnode; typedefstruct Qnode *front ; /* 队头指针 */ Qnode *rear ; /* 队尾指针 */ LQueue; / 初始化处理void QueueInitiate(LQueue *Q) Q-front=NULL; Q-rear=NULL; / 非空判断,为空,为非空。int QueueNotEmpty(LQueue Q) if (Q.f
2、ront=NULL) return 0; else return 1; / 入队列,即插入操作int QueueAppend(LQueue *Q,DataType x) Qnode *p; p=(Qnode *)malloc(sizeof (Qnode); if (!p) coutdata=x; p-next=NULL; / 若rear 指向空即空队列,直接将 rear 指向p即可。否则将 rear 的next 指向p。if (Q-rear!=NULL) Q-rear-next=p; Q-rear=p; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - -
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 2022年队列应用_约瑟夫环问题 2022 队列 应用 约瑟夫 问题
限制150内