已经创建链表并把链表写入文件了,如何再从文件中读出链表呢?

最好有示例程序,谢谢... 最好有示例程序,谢谢 展开
 我来答
百度网友54fd645
2015-09-08 · TA获得超过426个赞
知道答主
回答量:40
采纳率:100%
帮助的人:19.5万
展开全部

看你的链表在文件中是什么形式的存在了,  读取与写入的过程是一样的。

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
展开全部
先转数字再写入文件,读取时先读到数组再转回链表。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式