摘要: #include <stdio.h> #include <stdlib.h> #define MAXQSIZE 100 typedef int QElemType; typedef struct QNode{ QElemType data; QNode *next; }QNode,*QLinkPtr 阅读全文
posted @ 2022-06-01 11:50 Ccdjun 阅读(18) 评论(0) 推荐(0) 编辑