DoubleExprience

数据结构------循环队列

/*循环队列:逻辑上循环 ,本质:单链表基本操作:初始化、判空、入队、出队队列:长度、如何存元素、对头和队尾指针对空: rear == front 对满: (rear+1)%Maxsize == front */ #include <stdio.h>#define Maxsize 10typedef

posted on 2021-07-12 23:51  DoubleExprience  阅读(93)  评论(0编辑  收藏  举报

导航