0

構造レコードの配列とレコードへの関数insertinsert or updateあります。

insert関数 take list(レコードの配列)、(本nameの名前) author、、、およびサイズyearcopiesnlist

見つかった場合はレコードを更新し、そうでない場合は新しいレコードを挿入します。ここn=7

void insert(struct books *list,char name[],char author[],int year,int copies,int n)
{
    int i,found=0,empty;

    for(i=0;(i<n) && (found==0);i++)
    {
        // update works fine
        if( strcmp(name,list[i].name)==0 && strcmp(author,list[i].author)==0 )
        {
            list[i].copies=copies;
            list[i].year=year;
            printf("\n\n####################################################\n");
            printf("####\tRecord was successfully updated!\t####\n");
            printf("####################################################\n");
            found=1;
        }
        //get an empty record
        if(strcmp(list[i].author,"i")==0){empty=i;}
    }

    //insert gives segmentation error
    if(found==0)
    {
        strcpy(list[empty].name,name);
        strcpy(list[empty].author,author);
        list[empty].year=year;
        list[empty].copies=copies;

        printf("\n\n####################################################\n");
        printf("####\tRecord was successfully inserted!\t####\n");
        printf("####################################################\n");
    }
}  

私のlist配列は次 のとおりです。

A
Ruby On Rails
2004
100
B
Inferno
1993
453
C
Harry Potter and the soccers stones
2012
150
D
Harry Potter and the soccers stone
2012
150
E
Learn Python Easy Way
1967
100
F
Ruby On Rails
2004
130
i
i
0
0  

なぜ与えているのSegmentation error: 11ですか?

4

1 に答える 1

3

おそらく初期化する必要がありますempty。行う

空=0;

実際、SO はデバッグ サービスではありません。だから、こういう質問はやめてください。

于 2013-10-26T20:40:13.983 に答える