欢呼手机

文章
5
资源
0
加入时间
2年10月21天

循环队列与普通队列

普通队列#include "stdio.h"#include "stdlib.h"#include "string.h"#define MAXSIZE 20 //普通队列 typedef struct{ int data[MAXSIZE]; int front; //队头 int rear; //队尾 }Queue;//入队int enQueue(Queue* q, ...