摘要: include include define size 20 typedef int ElemType; typedef struct { ElemType elem[size]; int front,rear; }CircQueue; void InitQueue(CircQueue & Q){ 阅读全文
posted @ 2019-04-28 16:55 杨垚1 阅读(215) 评论(0) 推荐(0) 编辑