试图存储指针数组

时间:2010-09-29 01:52:59

标签: c

struct match
{
    char men[64];
    char women[64];
    char menNum[1000];
    char woNum[1000];
};

void printOut();
int matchMaking(struct match* p, struct match* q, int k);
int main(void)
{
    FILE* fin;
    FILE* fout;
    fin = fopen("input.txt", "r");
    fout = fopen("out.txt", "w");
    int matchNum = 0;
    int size;
    int i;
    int j;
    int a;
    struct match* ptrName;
    struct match** ptrNum;
    char* str;
    char temp[800];

    if(fin == NULL)
        printf("Cannot Find File");

    fgets(temp, 800, fin);
    str = (char*)malloc(sizeof(char));
    str = (char*)strtok(temp, " \n");
    size = atoi(str);
    printf("Size = %d\n", size);

    ptrName = (struct match*)malloc(size*sizeof(struct match));
    ptrNum = (struct match**)malloc(size*sizeof(struct match*));

    for(i = 0; i < size; i++)
    {

        fgets(temp, 800, fin);
        str = (char*)strtok(temp, " \n");
        matchNum = atoi(str);
        printf("Match Num = %d\n", matchNum);
        fgets(temp, 800, fin);
        strcpy(ptrName->men, temp);
        printf("Name = %s\n", ptrName->men);
        fgets(temp, 800, fin);
        strcpy(ptrName->women, temp);
        printf("Name = %s\n", ptrName->women);

        for(j = 0; j<matchNum; j++)
        {
            fgets(temp, 800, fin);
            strcpy(ptrNum[j]->menNum, temp);
            printf("Men Num = %d\n", ptrNum[j]->menNum);
        }

调试时我一直将分段错误视为错误

2 个答案:

答案 0 :(得分:2)

粗略地说,问题就在这里:

ptrNum = (struct match**)malloc(size*sizeof(struct match*));

你真正想要的是sizestruct match个,而不是size个指针的内存。然后你想索引到那个空间。

实际上,你应该做一些像

这样的事情
struct match* ptrNum = malloc(size*sizeof(struct match));

这为您提供了size个结构数的内存块,并为您提供指向第一个结构的指针。您可以使用简写的“数组”表示法来索引此内存,因此match[0]为您提供“数组”中位置0的结构,match[j]为您提供 j的记录 -th position。

另请注意,match[j]会返回实际内存,因此您不想使用指针表示法:

strcpy(ptrNum[j].menNum, temp);

答案 1 :(得分:0)

你分配了一个指针数组,但你实际上从未将这些指针设置为任何东西!您对strcpy(ptrNum[j]->menNum, temp);的调用将写入随机地址,因为ptrNum []中的每个条目都未初始化。