0

テキスト ファイルから読み取り、構造を動的に作成しようとするプログラムを作成しています。

だから私はそれを行うための次のコードを持っています:

typedef struct tgraph {
    int vertex_count;
    int edge_count;
    struct tvertex **adj;
} Graph;

typedef struct tvertex {
    int n; /* vertex number */
    char course[255];
    struct tvertex *next;
} Vertex;

Graph g_graph;

void create_graph(FILE *fd) 
{
    int vertex_count;
    int edge_count; 
    fscanf(fd, "%i", &vertex_count);
    fscanf(fd, "%i", &edge_count);
    printf("Vertices: %i\n", vertex_count);
    printf("Edges: %i\n", edge_count);
    g_graph.vertex_count = vertex_count;
    g_graph.edge_count = edge_count;
    g_graph.adj = malloc(sizeof(Vertex *));
    Vertex **vlist = g_graph.adj;
    int i;
    for (i = 0; i < vertex_count; i++) {
        Vertex *vertex = malloc(sizeof(Vertex));
        fscanf(fd, "%i,%[^\n]", &vertex->n, vertex->course);
        printf("%i %s\n", vertex->n, vertex->course);
        *vlist = vertex;
        vlist ++;;
    }
}

この関数を呼び出してcreate_graphいますが、実行時にこのエラーが発生します

破損した二重リンク リスト: 0x00000000007d7240

これは、メイン関数での呼び出しによって発生しfclose(fd)ます。問題は、ヒープを破損していることです。私のポインター演算はおそらく間違っていますが、解決できません。

Linuxでgccでコンパイルしています。

4

1 に答える 1