我试图写二进制这个链表,但它给了我一个访问违规。InsertVertice和InsertAresta创建了该结构体的新实例,并且工作得很好,所以我不知道为什么这会给我一个错误。如果你需要的话,我可以在这里添加InsertVertice和InsertAresta函数。
typedef struct Arestas
{
int vertice;
char Action[100];
struct Arestas* next;
}*arestas;
typedef struct Vertices
{
int vertice;
struct Vertices* next;
struct Arestas* adjacente;
}*vertice;
void WriteBin(vertice v)
{
FILE * f;
vertice apt = v;
struct Arestas* aresta;
int i;
f = fopen("Grafo.bin","wb");
while(apt!=NULL)
{
aresta = apt->adjacente;
fwrite(apt->vertice,sizeof(int),1,f);
while(aresta!=NULL)
{
fwrite(aresta->vertice,sizeof(int),1,f);
fwrite(aresta->Acao,sizeof(char),100,f);
aresta = aresta->next;
}
apt = apt->next;
}
}
void main()
{
vertice v= NULL;
v = InsertVertice(v,1);
v = InsertAresta(v,1,2,"ola");
v = InsertAresta(v,1,3,"hey");
v = InsertAresta(v,1,4,"oi");
v = InsertAresta(v,1,5,"hello");
WriteBin(v);
system("pause");
}
fwrite接受指向正在写入的数据的指针作为第一个参数。你没有给它传递一个指向整型的指针。你实际上是在传递int
您可能需要在第一个参数中使用&(apt->vertice)。