2个回答
展开全部
看你的链表在文件中是什么形式的存在了, 读取与写入的过程是一样的。
struct node {
char data[DATASIZE];
struct node *next;
};
struct node *read_list_from_file(const char *filename)
{
struct node *pnode = NULL;
static struct node *head = pnode;
FILE *fp = fopen(filename, "r");
if (!fp)
return NULL;
while (!feof(fp)) {
if (pnode) {
pnode = pnode->next;
}
pnode = calloc(1, sizeof(struct node));
fread(pnode->data, 1, sizeof(pnode->data), fp);
}
fclose(fp);
return head;
}
void write_list_to_file(struct node *head, char filename)
{
struct node *tmp = head;
FILE *fp = fopen(filename, "w");
if (!fp)
return;
while (!tmp) {
fwrite(tmp->data, 1, sizeof(tmp->data), fp);
tmp = tmp->next;
}
fclose(fp);
}
追问
pnode = calloc(1, sizeof(struct node));
错误 6 error C2440: “=”: 无法从“void *”转换为“node *” c:\users\wxy\documents\visual studio 2013\projects\学生成绩管理\学生成绩管理\源.cpp 143 1 学生成绩管理
这是什么问题呢?
追答
只是部分代码给个思路,后面要你自己去修改。
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#define DATASIZE 10
struct node {
char data[DATASIZE];
struct node *next;
};
void read_list_from_file(char *filename, struct node **pphead)
{
struct node *pnode = NULL;
struct node *head = pnode;
FILE *fp = fopen(filename, "r");
if (!fp)
return;
while (!feof(fp)) {
if (pnode) {
pnode = pnode->next;
}
pnode = calloc(1, sizeof(struct node));
fread(pnode->data, 1, sizeof(pnode->data), fp);
}
fclose(fp);
*pphead = head;
}
void write_list_to_file(struct node *head, char *filename)
{
struct node *tmp = head;
FILE *fp = fopen(filename, "w");
if (!fp)
return;
while (!tmp) {
fwrite(tmp->data, 1, sizeof(tmp->data), fp);
tmp = tmp->next;
}
fclose(fp);
}
int main()
{
return 0;
}
2015-09-08
展开全部
先转数字再写入文件,读取时先读到数组再转回链表。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询