1
This commit is contained in:
31
wd/DataStructure/02_LineList/01_linelist.c
Normal file
31
wd/DataStructure/02_LineList/01_linelist.c
Normal 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()
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user