摘要: 代码如下: #include <stdio.h>#include <stdlib.h> #define ERROR 0#define OK 1 typedef struct Queue{ int *data; int head,tail,length; }Queue; void init(Queue 阅读全文
posted @ 2019-12-26 22:09 马猴烧酒孟优秀 阅读(163) 评论(0) 推荐(0) 编辑