- 1、本文档共9页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
#include stdio.h
#include stdlib.h
struct node{
char JDname[15];
char JDbrand[15];
char prize[15];
char amount[15];
struct node *next;
};
typedef struct node nodetype;
void creat_linklist(nodetype *l)
{
int i,j=0,k,n;
nodetype *p,*s;
float f;
printf(how many datas you want to input?\n);
scanf(%d,n);
printf(Then please input your datas\n);
p=l;
for(i=1;i=n;i++)
{ s=(nodetype *)malloc(sizeof(nodetype));
printf(the No.%ds JDname is:,i);
scanf(%s,s-JDname);
j=0;
while(s-JDname[j]!=\0)
j++;
for(k=j+1;k=14;k++)
s-JDname[k]= ;
printf(the No.%ds JDbrand is:,i);
scanf(%s,s-JDbrand);
j=0;
while(s-JDbrand[j]!=\0)
j++;
for(k=j+1;k=14;k++)
s-JDbrand[k]= ;
printf(the No.%ds prize is:,i);
scanf(%s,s-prize);
j=0;
while(s-prize[j]!=\0)
j++;
for(k=j+1;k=14;k++)
s-prize[k]= ;
printf(the No.%ds amount is:,i);
scanf(%s,s-amount);
j=0;
while(s-amount[j]!=\0)
j++;
for(k=j+1;k=14;k++)
s-amount[k]= ;
p-next=s;
p=s;
p-next=NULL;
}
}
void output_linklist(nodetype *l)
{
nodetype *p;
int i=1,j;
p=l-next;
if(p==NULL)
printf(error\n);
else
{
printf(Num JDname JDbrand prize amount\n);
while(p!=NULL)
{
if(i10)
printf(No.%d ,i);
else
printf(No.%d ,i);
for(j=0;j=14;j++)
printf(%c,p-JDname[j]);
for(j=0;j=14;j++)
printf(%c,p-JDbrand[j]);
for(j=0;j=14;j++)
printf(%c,p-prize[j]);
for(j=0;j=14;j++)
printf(%c,p-amount[j]);
printf(\n);
p=p-next;
i++;
}
}
}
void delete_linklist(nodetype *l)
{
int j=0,i;
nodetype *p,*q;
p=l;
q=l-next;
printf(Which line do you want to delete?\n);
scanf(%d,i);
while(q!=NULL)
{
q=q-next;
j++;
}
if(i1||ij)
printf(error\n);
else
{for (j=1;ji;j++)
p=p-next;
q=p-next;
p-next=q-next;
free(q);
}
}
void insert_linklist(nodetype *l)
{
int j=0,i,k,m=0;
nodetype *p,*q;
printf(Which line do you want to insert?\n);
scanf(%d,i);
p=l;
q=l-next;
while(q!=NULL)
{
q=q-next;
j++;
}
if(i1||ij)
printf(error\n);
else
{for (j=1;ji;j++)
p=p-next;
q=(nodetype *)malloc(sizeof(nodetype));
printf(the No.%ds JDname is:,i);
scanf(%s,q-JDname);
while(q-JDname[m]!=\0)
m++;
for(k=m+1;k=14;k++)
q-JDname[k]= ;
p
文档评论(0)