摘要: 循环队列源代码(C语言版)/*******简单实现了插入,删除,长度,退出等功能********/#include#include#define MAXSIZE 100//定义队列结构typedef struct Queue{ int * base; int front; int rear;}... 阅读全文
posted @ 2016-12-28 18:21 Obelia 阅读(215) 评论(0) 推荐(0) 编辑