fstream在链表上的写入和读取功能

时间:2017-07-27 12:08:02

标签: c++ c++11 linked-list c++14 file-handling

我对文件处理的概念很陌生。我正在尝试创建一个待办事项列表,用于记录文件中的每个修改。我不确定如何实现这一点,所以我创建了一个简单的链表并尝试读取并将其写入文件,但我失败了。 这是我的代码 - >

#include <iostream>
#include <fstream>

struct node{
    int val;
    node *next = NULL;
};

void add(node *&head, int val){
    node *newPtr = new node;
    if(head==NULL){
        newPtr->val = val;
        head = newPtr;
    }
    else{
        newPtr->val = val;
        newPtr->next = head;
        head = newPtr;
    }
}

void print(node *head){
    node *temp;
    temp = head;
    while(temp!=0){
        std::cout << (*temp).val << " ";
        temp = temp->next;
    }
    std::cout << std::endl;
}

int main(){

    node *head = NULL;
    int val;
    std::ofstream filout;
    filout.open("data.txt",std::ios::out|std::ios::app|std::ios::binary);

    while(true){
        std::cin>>val;
        if(val==0)
            break;
        else{
            add(head,val);
            filout.write((char*)&head, sizeof(head));
        }
    }

    std::ifstream filin;
    filin.open("data.txt",std::ios::in|std::ios::binary);
    filin.read((char*)&head, sizeof(head));

    print(head);

    return 0;
}

我应该对代码进行哪些修改才能使其正确无误?

更新

当我第一次尝试执行程序时,我可以轻松插入一些值并通过输入0终止程序,一切都很好。但是当我第二次运行程序时,我在EXC_BAD_ACCESS error语句中的打印函数中得到std::cout

1 个答案:

答案 0 :(得分:0)

好的,让我们一步一步来。

  1. std :: ios :: out | std :: ios :: app | std :: ios :: binary 模式中打开文件意味着:
    • 输出
    • 附加(打开文件并寻求结束)
    • 二进制(关于行结尾的内容,更好的谷歌)
  2. 读取数据并存储
    • 读取值
    • 将其添加到列表
    • 存储在文件中(注意:filout.write((char*)&head, sizeof(head));将节点的地址存储在内存中)
  3. 打开文件进行阅读(不关闭!)并将第一个值读入 head
  4. 因此,在第二次启动后,您会阅读 head 节点的第一个地址。

    有人建议:

    1. 从不做任何事情涉及在没有必要
    2. 的情况下在c ++中将数据转换为char *
    3. 永远不会将内存地址存储在文件中(重新分配后无用甚至无法使用)
    4. 序列化您的结构以存储它(如google/protobuf