我对文件处理的概念很陌生。我正在尝试创建一个待办事项列表,用于记录文件中的每个修改。我不确定如何实现这一点,所以我创建了一个简单的链表并尝试读取并将其写入文件,但我失败了。 这是我的代码 - >
#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
答案 0 :(得分:0)
好的,让我们一步一步来。
filout.write((char*)&head, sizeof(head));
将节点的地址存储在内存中)因此,在第二次启动后,您会阅读 head 节点的第一个地址。
有人建议: