摘要: //循环队列的实现 #include<stdio.h> //定义队列数据类型 //rear指向队尾元素下标的下一个下标,front指向对头元素的下标 typedef struct Queue{ int *pBase;//一个数组 等于int pBase[] int front;//对头指针 int 阅读全文
posted @ 2023-09-14 16:24 一往而深, 阅读(7) 评论(0) 推荐(0) 编辑