建立循环队列

/* 2017年6月18日 22:33:02 数据结构 (c) 循环队列 初始化 入队 出队 是否空 是否满 遍历队列 */ #include <stdio.h> #include <malloc.h> #include <stdlib.h> typedef struct Queue { int * pBase; int front; int rear; int len;
相关文章
相关标签/搜索