摘要: 接口 #ifndef __QUEUE_H__ #define __QUEUE_H__ #include <stdlib.h> #include <stdio.h> #include <stdbool.h> typedef int ElementType; #define MAXSIZE 5 type 阅读全文
posted @ 2021-12-03 23:52 无忧小菜 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 接口 #ifndef __STACK_LIST_H__ #define __STACK_LIST_H__ #include <stdlib.h> #include <stdio.h> #include <stdbool.h> typedef int ElementType; typedef stru 阅读全文
posted @ 2021-12-03 23:49 无忧小菜 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 接口 #ifndef __STACK_ARRAY_H__ #define __STACK_ARRAY_H__ #include <stdlib.h> #include <stdio.h> #include <stdbool.h> typedef int ElementType; #define MA 阅读全文
posted @ 2021-12-03 23:46 无忧小菜 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 接口 #ifndef __LINEAR_LIST_H__ #define __LINEAR_LIST_H__ #include <stdlib.h> #include <stdio.h> #include<stdbool.h> typedef int ElementType; typedef str 阅读全文
posted @ 2021-12-03 23:42 无忧小菜 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 接口 #ifndef _LINEAR_ARRAY_H_ #define _LINEAR_ARRAY_H_ #include <stdlib.h> #include <stdio.h> #include<stdbool.h> #define MAXSIZE 100 #define ElementTyp 阅读全文
posted @ 2021-12-03 23:37 无忧小菜 阅读(74) 评论(0) 推荐(0) 编辑