clearlist();
printf(\清空线性表成功!是否继续(Y/N)?\
select=getch();
if(select=='y'||select=='Y') goto lable1;
goto end;
}
else if(select=='f'||select=='F')
{
printf(\当前线性表长度为:\printf(\
printf(\是否继续(Y/N)?\
select=getch();
if(select=='y'||select=='Y') goto lable1;
goto end;
}
else if(select=='l'||select=='L')
{ int i,e; int flag1;
printf(\请输入要查找的元素值:\
scanf(\flag1=find(e); printf(\if(flag1==0)
{printf(\是空表,或该数据元素不存在!,是否继续(Y/N)?\
select=getch();
if(select=='y'||select=='Y') goto lable1;
goto end;
} else {
printf(\找到了,是L中的第\
printf(\printf(\个数据元素\
printf(\
printf(\是否继续(Y/N)?\
select=getch();
if(select=='y'||select=='Y') goto lable1;
goto end;
}
}
else if(select=='v'||select=='V')
{ int i,e; int flag1;
printf(\当前表中数据元素有:\
flag1=print(); if(flag1==0) {printf(\是空表!\printf(\
printf(\是否继续(Y/N)?\
select=getch();
if(select=='y'||select=='Y') goto lable1;
goto end;
} else {
printf(\是否继续(Y/N)?\
select=getch();
if(select=='y'||select=='Y') goto lable1;
goto end;
} } else { printf(\选择有误!是否继续(Y/N)?\
select=getch();
if(select=='y'||select=='Y') goto lable1;
goto end;
} end:; }