码迷,mamicode.com
首页 >  
搜索关键字:cycqueue    ( 4个结果
2.2 先进先出结构:队列
2-8SeqQueue.h 2-9 CycQueue.h 2-10 BankQueue.c ...
分类:其他好文   时间:2016-07-19 09:18:37    阅读次数:275
队列学习笔记 银行排号程序
//循环队列 //CycQueue.h #defineQUEUEMAX15 typedefstruct { DATAdata[QUEUEMAX];//队列数组 inthead;//队头 inttail;//队尾 }CycQueue; CycQueue*CycQueueInit() { CycQueue*q; if(q=(CycQueue*)malloc(sizeof(CycQueue)))//申请保存队列的内存 { q->head=0;//设..
分类:其他好文   时间:2015-04-28 18:44:35    阅读次数:128
队列学习笔记 循环队列
//循环队列 //CycQueue.h #defineQUEUEMAX15 typedefstruct { DATAdata[QUEUEMAX];//队列数组 inthead;//队头 inttail;//队尾 }CycQueue; CycQueue*CycQueueInit() { CycQueue*q; if(q=(CycQueue*)malloc(sizeof(CycQueue)))//申请保存队列的内存 { q->head=0;//设..
分类:其他好文   时间:2015-04-28 18:42:40    阅读次数:134
队列之银行排号模拟
//CycQueue.h /* Queue:First In First Out (FIFO) 避免假溢出:使用循环队列。 */ #define QUEUEMAX 20 //1.定义队列结构 typedef struct { DATA data[QUEUEMAX]; //队列数组 int head; //队头 int tail; //队尾 }CycQueue; /...
分类:其他好文   时间:2014-12-09 15:46:05    阅读次数:270
4条  
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!