[求助]如何将链表保存到文件
谁能给个例子,用C++ 来写 ofstream/ifstream 操作
void mate::file()//file是mate类的数据成员//写入文件
{
mate *p;
p=head->next;//是头指针
ofstream myfile("datam",ios::binary);
if(!myfile) cout<<"error";
while(p!=NULL){
myfile.write((char *)(p),sizeof(p));
p=p->next;
}