摘要: 【数据结构学习笔记】c语言创建循环队列(数组) #ifndef QUEUE_DAT typedef int Item; typedef struct node *Queue; Queue create(void); bool is_empty(Queue q); bool is_full(Queue 阅读全文
posted @ 2022-10-16 23:02 出色的你 阅读(103) 评论(0) 推荐(0)