This commit is contained in:
H
2021-06-09 07:52:19 +08:00
commit 0e475c423c

View File

@@ -0,0 +1,31 @@
#include<stdio.h>
// 线性表 逻辑结构
// 顺序表 链表 存储结构
void InitList(); //初始化
bool Empty(); //
bool ListInstert(); //
bool ListDeter(); //
int GetElem(); //
int LocateElem(); //
bool LocateChangElem(); //
bool getChangElem(); //
void PrintList();
void textModule();
int mian()
{
}