Files
ky/wd/DataStructure/02_LineList/01_linelist.c
2021-06-09 07:52:19 +08:00

32 lines
345 B
C

#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()
{
}