4

私はこれに何日も苦労していて、なぜそれが機能しないのか理解できません。

私はこのように書かれた数字でファイルから数字を読み込もうとしています:

0 2012 1 1 2000.000000
0 2012 1 1 3000.000000
1 2012 1 1 4500.000000

私の構造:

struct element{

        int id;
        int sign;
        int year;
        int month;
        double amount;

        struct element *next;


};

struct queue{
    struct element *head;
    struct element *tail;
    struct element *head2; 
    struct element *temp;  
    struct element *temph; 

    int size;
};

(head2、temp、temphはソート構造で使用されます)

およびファイルからの読み取り:

void read_str(struct queue *queue){

    FILE *reads;

    char filename[40];
    int temp;

    printf("Type in name of the file\n");
    scanf("%s",&filename);
    reads=fopen(filename, "r");
    if (reads==NULL) {
        perror("Error");
        return 1;
    }
    else { 
        while(!feof(reads)) {
            struct element *n= (struct element*)malloc(sizeof(struct element));             
            fscanf(reads,"%d %d %d %d %lf", n->id, n->sign, n->year, n->month, n->amount);                  
            n->next=NULL;                   

            if(queue->head ==NULL) {
                queue->head=n;
            }
            else {
                queue->tail->next=n;
            }

            queue->tail=n;
            queue->size++;                  

        }           
    }
}

データを書き込む関数を変更することで、ファイル内のデータの外観を変更できますが、それは問題ではないと思います。私の推測では、私はmalloc間違った方法で使用しています。

4

1 に答える 1

20
fscanf(reads,"%d %d %d %d %lf", n->id, n->sign, n->year, n->month, n->amount);

関数ファミリーはscanfアドレスを期待します。fscanf行を次のように変更します。

fscanf(reads,"%d %d %d %d %lf", &n->id, &n->sign, &n->year,
    &n->month, &n->amount);

ちなみに、これは深刻な誤解を招く行です。

else { while(!feof(reads)) {
于 2012-07-01T08:23:32.080 に答える