输入
为线性表的操作系列,每个操作一行,具体见样例。
输出
如果输入为"Empty", 则根据表是否为空输出"Empty"或 “Not empty”。
如果输入为"Length",则输出表长。
如果输入为"Insert i e",插入失败则输出"Insert failed",否则在i位置插入e后输出插入后表中的所有元素。
如果输入为"GetElem i “,参数i错误输出"Out of index”,否则输出在i位置的元素。
如果输入为"LocateElem e",如果未发现输出"e is not found in list",否则输出e在表中的位置。
如果输入为"Delete i",如果失败输出"Delete failed",否则删除i位置的元素后输出插入后表中的所有元素。
具体参见样例。
样例输入 Copy
Empty
Insert 1 7
Empty
Insert 2 3
Length
Insert 1 -100
Length
Insert 10 100
Length
Insert 2 10000
Empty
GetElem 2
GetElem 5
LocateElem 999
LocateElem 3
Delete 0
Delete 4
Delete 1
Length
样例输出 Copy
Empty
7
Not empty
7 3
List length is 2
-100 7 3
List length is 3
Insert failed
List length is 3
-100 10000 7 3
Not empty
The elem at position 2 is 10000
Out of index
999 is not found in list
3 is found at the position 4
Delete failed
-100 10000 7
10000 7
List length is 2
1.顺序表实现
#include<iostream>
#include<cstdio>
#include<cstdlib>
using namespace std;
#define OK 1
#define ERROR 0
#define OVERFLOW -2
typedef int Status; //Status 是函数返回值类型,其值是函数结果状态代码。
typedef int ElemType; //ElemType 为可定义的数据类型,此设为int类型
#define MAXSIZE 100 //顺序表可能达到的最大长度
typedef struct {
ElemType *elem; //存储空间的基地址
int length; //当前长度
} SqList;
Status InitList(SqList &L) //算法2.1 顺序表的初始化
{
//构造一个空的顺序表L
L.elem = new ElemType[MAXSIZE]; //为顺序表分配一个大小为MAXSIZE的数组空间
if(!L.elem)
exit(OVERFLOW); //存储分配失败退出
L.length = 0; //空表长度为0
return OK;
}
void DestroyList(SqList &L)
{
if(L.elem)
delete []L.elem; //释放存储空间
}
int ListLength(SqList L)
{
return L.length ;
}
bool ListEmpty(SqList L)
{
if(L.length ==0)return 1;
else return 0;
}
Status GetElem(SqList L, int i, ElemType & e) //算法2.2 顺序表的取值
{
if(i<1||i>L.length )return ERROR;//判断i值是否合理,若不合理,返回ERROR
e=L.elem[i-1];//elem[i-1]单元存储第i个数据元素
return OK;
}
int LocateElem(SqList L, ElemType e) //算法2.3 顺序表的查找
{
for(int i=0;i<L.length ;i++)
if(L.elem[i]==e)return i+1;//查找成功,返回序号i+1
return 0; //查找失败,返回0
}
Status ListInsert(SqList & L, int i, ElemType e) //算法2.4 顺序表的插入
{
//在顺序表L中第i个位置插入新的元素e, i值的合法范围是1<=i<=L.length+1
if((i<1