commit 0e475c423c6b9e1c04fd3b33657b83fb95f95251 Author: H Date: Wed Jun 9 07:52:19 2021 +0800 1 diff --git a/wd/DataStructure/02_LineList/01_linelist.c b/wd/DataStructure/02_LineList/01_linelist.c new file mode 100644 index 0000000..89c4a32 --- /dev/null +++ b/wd/DataStructure/02_LineList/01_linelist.c @@ -0,0 +1,31 @@ +#include + +// 线性表 逻辑结构 +// 顺序表 链表 存储结构 + + +void InitList(); //初始化 +bool Empty(); // +bool ListInstert(); // +bool ListDeter(); // +int GetElem(); // +int LocateElem(); // +bool LocateChangElem(); // +bool getChangElem(); // + + + +void PrintList(); +void textModule(); + + + + + + + +int mian() +{ + + +}