SqList.cpp

时间:2022-07-17 09:59:11
【文件属性】:

文件名称:SqList.cpp

文件大小:3KB

文件格式:CPP

更新时间:2022-07-17 09:59:11

顺序表基本操作

编程实现顺序表的基本操作函数。 (1) void InitList(SqList &L, int n) //建立一个表长为n的顺序表 (2) void ListInsert(SqList &L, int i, ElemType e) //在顺序表中第i个位置插入元素函数e (3) void ListDelete(SqList&L, int i, ElemType &e) //删除顺序表L的第i个数据元素,并用e返回其值。 (4) void PrintList(SqList L) // 输出顺序表 (5) int Locate(SqList L, ElemType e) //若顺序表L中存在数据元素e,则返回e在顺序表L中第一次出现的位序;否则返回0. (6) int ListLength(SqList L) //求顺序表L的表长


网友评论