本题要求实现一个函数,要求从顺序表中查找指定元素,并返回第一个查找成功的元素在表中的位置序号,若查找失败,则返回0;
int LocateElem(SqList L,ElemType e);
其中SqList结构定义如下:
typedef struct{
ElemType *elem;
int length;
}SqList;
#include
#include
#define MAXSIZE 5
typedef int ElemType;
typedef struct{
ElemType *elem;
int length;
}SqList;
void InitList(SqList &L);/*细节在此不表*/
int LocateElem(SqList L,ElemType e);
int main()
{
SqList L;
InitList(L);
ElemType e;
int p;
scanf("%d",&e);
p=LocateElem(L,e);
printf("The position of %d in SequenceList L is %d.",e,p);
return 0;
}
/* 请在这里填写答案 */
输入数据有1行,首先给出以-1结束的顺序表元素值(不超过100个,-1不属于顺序表元素),然后是待查找的元素值。所有数据之间用空格分隔。
2 6 4 9 13 -1 2
The position of 2 in SequenceList L is 1.
int LocateElem(SqList L,ElemType e)
{
int i;
for(i=0;i
本题要求实现一个函数,在顺序表的第i个位置插入一个新的数据元素e,插入成功后顺序表的长度加1,函数返回值为1;插入失败函数返回值为0;
int ListInsert(SqList &L,int i,ElemType e);
其中SqList结构定义如下:
typedef struct{
ElemType *elem;
int length;
}SqList;
#include
#include
#define MAXSIZE 5
typedef int ElemType;
typedef struct{
ElemType *elem;
int length;
}SqList;
void InitList(SqList &L);/*细节在此不表*/
int ListInsert(SqList &L,int i,ElemType e);
int main()
{
SqList L;
InitList(L);
ElemType e;
int i;
scanf("%d%d",&i,&e);
int result=ListInsert(L,i,e);
if(result==0){
printf("Insertion Error.The value of i is unlawful or the storage space is full!");
}else if(result==1){
printf("Insertion Success.The elements of the SequenceList L are:");
for(int j=0;j
输入数据有1行,首先给出以-1结束的顺序表元素值(不超过100个,-1不属于顺序表元素),然后是插入位置和被插入元素值。所有数据之间用空格分隔。
2 6 4 -1 2 100
Insertion Success.The elements of the SequenceList L are: 2 100 6 4
顺序表的插入实现中,要注意插入e的位置,e可以插在表中第一个数之前,也可以插在最后一个数之后,因此判断的时候要注意一下。
int ListInsert(SqList &L,int i,ElemType e)
{
if(i<0||i>L.length+1||L.length==MAXSIZE) return 0;
else
{
for(int j=L.length-1;j>=i-1;j--)
{
L.elem[j+1]=L.elem[j];
}
L.elem[i-1]=e;
L.length++;
}
return 1;
}
本题要求实现一个函数,要求将顺序表的第i个元素删掉,成功删除返回1,否则返回0;
int ListDelete(SqList &L,int i);
其中SqList结构定义如下:
typedef struct{
ElemType *elem;
int length;
}SqList;
#include
#include
#define MAXSIZE 5
typedef int ElemType;
typedef struct{
ElemType *elem;
int length;
}SqList;
void InitList(SqList &L);/*细节在此不表*/
int ListDelete(SqList &L,int i);
int main()
{
SqList L;
InitList(L);
int i;
scanf("%d",&i);
int result=ListDelete(L,i);
if(result==0){
printf("Delete Error.The value of i is illegal!");
}else if(result==1){
printf("Delete Success.The elements of the SequenceList L are:");
for(int j=0;j
输入数据有1行,首先给出以-1结束的顺序表元素值(不超过100个,-1不属于顺序表元素),然后是删除位置。所有数据之间用空格分隔。
2 6 4 -1 1
Delete Success.The elements of the SequenceList L are: 6 4
int ListDelete(SqList &L,int i)
{
if(i<=0||i>L.length) return 0;
for(int j=i-1;j
本题要求实现一个函数,要求将指定元素插入到有序表的合适位置,使得插入后仍然保持有序,若插入失败返回0;插入成功则返回1,并且顺序表的长度加1.
int SqInsert(SqList &L,ElemType e);
其中SqList结构定义如下:
typedef struct{
ElemType *elem;
int length;
}SqList;
#include
#include
#include
#define MAXSIZE 5
typedef int ElemType;
typedef struct{
ElemType *elem;
int length;
}SqList;
void InitList(SqList &L);/*函数的实现此处不再显示*/
int SqInsert(SqList &L,ElemType e);
int main()
{
SqList L;
InitList(L);
ElemType e;
scanf("%d",&e);
int result=SqInsert(L,e);
if(result==0){
printf("Insertion Error.The storage space is full!");
}else if(result==1){
printf("Insertion Success.The elements of the SequenceList L are:");
for(int j=0;j
输入数据有1行,首先给出以-1结束的非递减顺序表元素值(不超过100个,-1不属于顺序表元素,),然后是被插入元素值。所有数据之间用空格分隔。
4 8 20 -1 10
Insertion Success.The elements of the SequenceList L are: 4 8 10 20
从后往前边遍历更加方便。
int SqInsert(SqList &L, ElemType e)
{
int i;
if(L.length==MAXSIZE) return 0;
for(i=L.length-1;i>=0;i--)
{
if(L.elem[i]>e) L.elem[i+1]=L.elem[i];
else break;
}
L.elem[i+1]=e;
L.length++;
return 1;
}