摘要: #include <stdio.h> #include <stdlib.h> #define MAXQSIZE 100 typedef int QElemType; typedef struct{ QElemType *base; int front; int rear; }Queue; void 阅读全文
posted @ 2022-05-30 18:25 Ccdjun 阅读(26) 评论(0) 推荐(0) 编辑