2018年10月18日

C语言--循环队列实现

摘要: #include #include #include /* 循环队列*/typedef struct Queue{ int *p_base; int front; int rear;} QUEUE,*PQUEUE;void init_queue(QUEUE *);//队列初始化bool en_queue(QUEUE *, int); //加入队列void traverse_queue(QUEUE ... 阅读全文

posted @ 2018-10-18 09:53 ykyk_dba 阅读(218) 评论(0) 推荐(0) 编辑

导航