摘要: 今天是队列, 使用数组存储的循环队列. #include<stdio.h> #include<stdlib.h> #include<stdbool.h> typedef struct queue { int* pBase; // 循环数组使用的数组 int front; // 队头指针 int re 阅读全文
posted @ 2025-06-10 19:54 鲲特牌 阅读(5) 评论(0) 推荐(0)