摘要: 队列结构 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<string.h> 4 #define OK 1; 5 #define False -1; 6 //结点结构 7 typedef struct QNode 8 { 9 char date 阅读全文
posted @ 2020-05-16 20:14 YOLO-in-the-sun 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 循环队列结构定义 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<string.h> 4 #define SIZE 10 5 #define OK 1 6 #define False -1 7 //循环队列结构定义 8 typedef stru 阅读全文
posted @ 2020-05-16 19:32 YOLO-in-the-sun 阅读(250) 评论(0) 推荐(0) 编辑