麻烦大家给个用fwrite和fread将链表写入文件并读取的例子,谢谢!!!!

链表示例,谢谢了!!!structCountry//乡村信息结构体{charcounnum[5];charcounname[21];intpopulation;intfa... 链表示例,谢谢了!!!
struct Country//乡村信息结构体
{
char counnum[5];
char counname[21];
int population;
int family;//depositor存款人
float relief;//救济金
struct Country *next;
};
展开
 我来答
有钱买不起房子
2011-06-18 · TA获得超过4326个赞
知道大有可为答主
回答量:1249
采纳率:100%
帮助的人:2090万
展开全部
#include <stdio.h>
#include <stdlib.h>

struct Country//乡村信息结构体
{
char counnum[5];
char counname[21];
int population;
int family;//depositor存款人
float relief;//救济金
struct Country *next;
};

typedef struct Country *Lcountry;

//生成数据
int CreateData(Lcountry *head)
{
Lcountry s,p;
int i,num;

printf("输入个数:");
scanf("%d",&num);
if(num < 1)
{
printf("个数不合法\n");
return 0;
}

//录入数据
for(i=1;i<=num;i++)
{
if((s=(Lcountry)malloc(sizeof(struct Country)))==NULL)
{
printf("内存申请出错\n");
return 0;
}

printf("输入counnum counname population family relief,中间用空格隔开\n");
if(scanf("%s%s%d%d%f",s->counnum,s->counname,&s->population,&s->family,&s->relief)!=5)
{
printf("录入数据有误\n");
return 0;
}
s->next=NULL;

if(i==1)
{
*head=p=s;
}
else
{
p->next=s;
p=s;
}
}

return 1;
}

//写入数据
int WriteData(Lcountry head)
{
FILE *fp;
Lcountry p;

if((fp=fopen("f:\\test.txt","wb"))==NULL)//二进制只写方式打开
{
printf("打开文件出错\n");
return 0;
}

p=head;
while(p!=NULL)
{
if(fwrite(p,sizeof(struct Country),1,fp)!=1)
{
printf("写入数据出错\n");
fclose(fp);
return 0;
}
p=p->next;
}

fclose(fp);//关闭文件
return 1;
}

//读入数据
int ReadData(Lcountry *head)
{
Lcountry s,p;

FILE *fp;
if((fp=fopen("f:\\test.txt","rb"))==NULL)//二进制只读方式打开
{
printf("打开文件出错\n");
return 0;
}

while(!feof(fp))//文件不到末尾
{
if((s=(Lcountry)malloc(sizeof(struct Country)))==NULL)
{
printf("内存申请出错\n");
fclose(fp);
return 0;
}
//怎么写就怎么读取
if(fread(s,sizeof(struct Country),1,fp)!=1)//读到末尾或者出错,跳出循环
{
free(s);
break;
}
if(*head==NULL)
*head=p=s;
else
{
p->next=s;
p=s;
}

}

fclose(fp);//关闭文件
return 1;
}

//显示数据
void Print(Lcountry p)
{
printf("counnum \t counname \t population \t family \t relief\n");
while(p!=NULL)
{
printf("%s\t\t%s\t\t%d\t\t%d\t\t%0.1f\n",p->counnum,p->counname,p->population,p->family,p->relief);
p=p->next;
}
}
//释放资源
void Free(Lcountry *head)
{
Lcountry p=*head;
while(p!=NULL)
{
*head=(*head)->next;
free(p);
p=*head;
}
*head=NULL;
}

int main(void)
{
Lcountry head=NULL;

//生成数据
if(CreateData(&head)!=1)
return 1;

//显示数据
Print(head);

//写入数据
if(WriteData(head)!=1)
return 1;

//释放资源
Free(&head);
printf("写入完毕\n");

printf("\n读取数据...\n");
//读入数据
if(ReadData(&head)!=1)
return 1;

//显示数据
Print(head);

//释放资源
Free(&head);
return 0;
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式