0

嗨,我在下面有一个函数,每次编译时都会给我一个错误:“错误:从不兼容的类型'struct nodeInfo'分配给'struct nodeInfo'”我不知道如何修复它,因为我已经声明了相同类型的数组。欢迎任何帮助。

编辑: netTopo[id] = curNode; 线路导致问题。

struct nodeInfo *getTopology(FILE * file)
{
    int totLinks = 0, digit = 0;

    fscanf(file, "%d", &nodeCount);
    struct nodeInfo netTopo[nodeCount];

    // How many links does node have
    for (int id = 0; id < nodeCount; id++)
    {
        struct nodeInfo
        {
            int n;
            int *links;
        } curNode;

        curNode.n = id;
        fscanf(file, "%d", &totLinks);
        for (int i = 0; i < totLinks; i++)
        {
            curNode.links[totLinks];
            fscanf(file, "%d", &digit);
            curNode.links[i] = digit;
        }
        netTopo[id] = curNode;
    }
    return netTopo;
}
4

1 回答 1

3

你已经定义nodeInfo了两次。

代替

struct nodeInfo {
    int n;
    int *links;
} curNode;

尝试

struct nodeInfo curNode;

您的第一个声明未显示,所以我只是猜测您打算将它们相同。

于 2013-10-12T00:58:50.687 回答