0

これが私のコードです:

      char delims[4];
      delims[0]='\t';
      delims[1]=' ';
      delims[2]=',';
      delims[3]='\0';

      i = 0;
      while (fgets(line, 10000, fp) != NULL) 
      { 

        result = strtok(line,delims);

        while(result != NULL) {
          (*data_array)[i++] = atof(result);
          result = strtok(NULL, delims);
        }
      }

簡単です。そして、次のファイルに対して完全に機能します。

      3.600000 79.000000
      1.800000 54.000000
      3.333000 74.000000
      2.283000 62.000000
      4.533000 85.000000
      2.883000 55.000000
      4.700000 88.000000

しかし、このファイルでは機能しません:

      3.6   79  3
      1.8   54  3
      3.333 74  3
      2.283 62  1
      4.533 85  1
      2.883 55  1
      4.7   88  2
      3.6   85  1
      1.95  51  1
      4.35  85  3

そして、「Aborted (core dumped)」というエラーが表示されます。私は何を間違っていますか?

編集:これが関数全体です。*data_array と *data_labels は、main() で宣言されただけです。最初の部分が機能するように、data_labels 部分の一部をコメントアウトしました。

    int getdata(double* *data_array, int* *data_labels, int argc, char *argv[], int *items, int *attr)
    {  
      // filename variables
      char *filename;         // pointer to a string that will contain the name of the training data file.
      char *result = NULL;    // used with strtok() to extract each feature value given a line of delimited features.
      FILE *fp;               // pointer to FILE, we can use this with fgets to access each line
      char line[10000];       // array of 1000 chars for storing the raw data for one observation
      char delims[4];         // an array of common delimiters for data files
      delims[0]='\t';
      delims[1]=' ';
      delims[2]=',';
      delims[3]='\0';

      int i, j;

      // check that we have the correct number of command line arguments
      if (argc < 2)
      {
        printf("2usage: progname filename\n");
        return -1;
      }

      if (argc < 4)
      {
        printf("3usage: progname filename num_labels k(nn)\n");
        return -1;
      }

      if (atoi(argv[2]) < 1)
      {
        printf("num_labels must be a positive integer.\n");
        return -1;
      }

      if (atof(argv[2]) - atoi(argv[2]) > 0)
      {
        printf("num_labels must be an integer.\n");
        return -1;
      }

       if (atoi(argv[3]) < 1)
      {
        printf("k must be a positive integer.\n");
        return -1;
      }

      if (atof(argv[3]) - atoi(argv[3]) > 0)
      {
        printf("k must be an integer.\n");
        return -1;
      }

      // try to open the file
      filename = argv[1];
      fp = fopen(filename, "r");
      if (fp == NULL)
      {
        printf("could not open file: %s\n", filename);
        printf("note: the filename should be the second command line argument, after the .exe file");
        return -1;
      }

      printf("reading file: %s\n", filename);

      // get first line of the file to get num_items and num_attrs.
      fgets(line, 1000, fp);
      sscanf(line, "%d \t %d", items, attr);
      printf("num items: %d\n", *items);
      printf("num attributes: %d\n", *attr);  

      if (atoi(argv[3]) > *items)
      {
        printf("k should be smaller than the number of items in the input file.\n");
        return -1;
      }

      // create an array of the data
      *data_array = malloc(*items* *attr*sizeof(double));
      *data_labels = malloc(*items*sizeof(int));
      printf("data array size = %d\n\n",*items* *attr);

      i=0;
      j=0;

      while (fgets(line, 10000, fp) != NULL) 
      { 

        // we break line into tokens using our delimeters list declared at the beginning of the function
        result = strtok(line,delims);
        //printf("%d\n",i);

        while(result != NULL) {
          (*data_array)[i++] = atof(result);
          //printf("%f\n",(*data_array)[i-1]);
          result = strtok(NULL, delims);
        }
        //(*data_labels)[j++] = (int)((*data_array)[--i]);
      }
      /*
      printf("j=%d,items=%d\n",j,*items);
      for (i=0;i<*items;i++)
      {
        printf("i=%d,items=%d,",i,*items);
        printf("label=%d\n",(*data_labels)[i]);
      }
      // close the file
      fclose(fp);

      return 0;
    }
4

2 に答える 2

1

あなたの呼び出しstrtokは大丈夫です - の初期化をdelims同等のものに置き換えます

char *delims = "\t ,";

re-enterable に切り替えましたstrtok_rが、それがクラッシュの原因ではありません(同時環境にいる場合を除きます。この場合、クラッシュはランダムで、解析中のファイルとはほとんど無関係です)。

この行は非常に疑わしいです:

(*data_array)[i++] = atof(result);

data_arrayポインターが指す配列に十分なスペースが割り当てられていないか、data_arrayそれ自体が無効です。

于 2013-04-12T10:06:24.263 に答える
1

保持できる要素の数は(*data_array)、ループで埋めようとしているトークンの数よりも少なくなります。

于 2013-04-12T10:06:34.587 に答える