摘要: 阅读全文
posted @ 2021-07-15 21:45 北极星! 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 循环队列代码掩饰 /* 循环队列代码 */ #include <stdio.h> #include <malloc.h> typedef int bool; #define false 0 #define true 1 //循环队列结构体 typedef struct Queue { int *pB 阅读全文
posted @ 2021-07-15 19:47 北极星! 阅读(141) 评论(0) 推荐(0) 编辑