32 lines
345 B
C
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()
|
|
{
|
|
|
|
|
|
}
|