1

だから私はこのコードを持っています

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "hw09-header.h"

struct student
{
    char* name;
    char* course;
};

int main(int argc, char* argv[])
{
    int i = 0, init_size=10,x,z;
    char *value = "go";
    int key, count=0;
    char* del = ","; /*Uses comma sign as delimiter*/
    char *token=NULL;
    char *temp_stor;
    struct student *array;
    struct student *temp;

    if(argc != 2)
    {
        printf("  usage:  program_name positive_integern");
        printf("example:  ./example-hw09  123n");
        exit(1);
    }

    /**************  begin REQUIRED  **************/
    /*  put before logic.  DO NOT PUT IN A LOOP */
    key = atoi(argv[1]);
    initialize(key);
    /**************   end REQUIRED   **************/

    /*  example loop  */

    array=malloc((init_size)*sizeof(int));

    while(strcmp(value, "stop") != 0)
    {
        value = getString();
        token = strtok(value, del);
        while (token !=NULL)
        {
            if(i%4==0)
            {
                init_size=init_size*2;
                temp = realloc(array,init_size*sizeof(int)) ;
                if(temp != NULL)
                {
                    array = temp;
                }
                else
                {
                    printf("unable to reallocaten");
                    exit(1);
                }
            }

            array[i].name=malloc(sizeof(struct student)*10);
            strcpy(array[i].name,token);
            printf("%s %dn",array[i].name,i);
            token = strtok( NULL, del );
            array[i].course=malloc(sizeof(struct student)*11);
            strcpy(array[i].course,token);
            printf("%s n",array[i].course);
            i=i+1;
            token = strtok( NULL, del );
            x=i;
            for(x=0; x<i; x++)
            {
                if(strcmp(array[x].name,token)==0)
                    printf("Duplicate found n");
            }
        }
    }
}

strcmp を実行しようとすると、常にセグメンテーション エラーが発生し、その理由がわかりません。

ここでリンクリストを使用することは想定されていません。ここまでですべてが完了したと思います。次のいくつかの部分では、物事を比較して並べ替えるだけで、セグメンテーションエラーが発生し続けます。

そして、私の配列には要素が含まれています。何らかの理由でそれらを比較するだけでなく、それらをすべて印刷できます。

4

2 に答える 2

1

それ以来、トークンがnullであることは明らかです(あなたもそう言いました)。

if(strcmp(array[x].name,token)==0)

NULLパラメータをに渡すのは違法strcmpです。
文字列比較関数が NULL を 1 つのパラメーターとして呼び出された場合
、関数は NULL ポインターを逆参照しているため、プロセスは SIGSEGV を取得します。

于 2013-04-17T06:31:09.823 に答える