摘要: 主函数 main.c #include "SList.h" void main() { List mylist; InitList(&mylist); int select=1; ElemType Item; Node *p=NULL; while(select){ printf("******** 阅读全文
posted @ 2023-03-26 16:24 给我一碗炒粉 阅读(48) 评论(0) 推荐(0)
摘要: 头文件 #ifndef LINER_LIST_SEQLIST_H #define LINER_LIST_SEQLIST_H #include <stdio.h> #include <malloc.h> #include <assert.h> #include <stdbool.h> #define 阅读全文
posted @ 2023-03-26 16:22 给我一碗炒粉 阅读(39) 评论(0) 推荐(0)