摘要: 接下来的写法有线性队列的,也有循环队列,代码没有调试,可能运行时有问题 #include <stdbool.h> #include <stdio.h> #include <stdlib.h> #define SIZE 6 int top=0; int rear=0; int array[SIZE]= 阅读全文
posted @ 2020-12-07 00:14 empty_thought 阅读(215) 评论(0) 推荐(0)