队列
2025-08-31 19:57
typedef struct queue{ int* arr; //记录存储区首地址 int size;//有效元素个数 int cap; //容量 int front;//记录出队元素下标 int rear; //记录入队元素下标 }queue_t;