0

我在目录“/user/doc”中有一个 txt 文档 test.txt,如下所示:

10 21 34 45 29 38 28
29 47 28 32 31 29 20 12 24

*由“空格”分隔的两行数字。

我想将数字写入一个具有灵活长度的 2 行数组。长度可能取决于 txt 文档的一行中更多数字的数量。在示例中,它应该是 9。

之后,数组可能如下所示:

10 21 34 45 29 38 28 0 0
29 47 28 32 31 29 20 12 24

第 1 行中的数字在数组的第 1 行中。第 2 行中的数字在数组的第 2 行中。

我得到了下面的代码来一一填充数组,但我不知道如何将其修改为我需要的。有人可以帮忙吗?谢谢!

FILE *fp;
int key1[2][10];

if((fp = fopen("/Users/doc/test.txt", "rt")) == NULL)
{
    printf("\nCannot open file");
    exit(1);
}

else
{
    while(!feof(fp))
    {
        for(int i = 0; i < 2; i++)
        { 
            for(int j = 0; j < 10 ;j++)
            {
                fscanf(fp, "%d", &key1[i][j]); 
            }
        }

    }
}

fclose(fp);
4

2 回答 2

0

用 逐行读取每一行,fgets然后用 拆分它们strtok并用 解析strtol

像这样的东西:

char line[256];
int l = 0;
while (fgets(line, sizeof(line), input_file))
{
    int n = 0;

    for (char *ptr = strtok(line, " "); ptr != NULL; ptr = strtok(NULL, " "))
    {
        key1[l][n++] = strtol(ptr, NULL, 10);
    }

    l++;
}
于 2013-08-08T16:02:07.177 回答
0
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int getColCount(FILE *fin){
    long fpos = ftell(fin);
    int count = 0;
    char buff[BUFSIZ];
    while(fgets(buff, sizeof(buff), fin)){
        char *p;
        for(p=strtok(buff, " \t\n");p;p=strtok(NULL, " \t\n"))
            ++count;
        if(count)break;
    }
    fseek(fin, fpos, SEEK_SET);
    return count;
}

int main(void){
    FILE *fp;
    int *key1[2];

    if((fp = fopen("/Users/doc/test.txt", "rt")) == NULL){
        printf("\nCannot open file");
        exit(1);
    }

    for(int i = 0; i < 2; ++i){
        int size = getColCount(fp);
        key1[i] = malloc((size+1)*sizeof(int));
        if(key1[i]){
            key1[i][0] = size;//length store top of row
        } else {
            fprintf(stderr, "It was not possible to secure the memory.\n");
            exit(2);
        }
        for(int j = 1; j <= size ;++j){
            fscanf(fp, "%d", &key1[i][j]); 
        }
    }
    fclose(fp);
    {//check print and dealocate
        for(int i = 0; i < 2 ; ++i){
            for(int j = 1; j <= key1[i][0]; ++j)
                printf("%d ", key1[i][j]);
            printf("\n");
            free(key1[i]);
        }
    }
    return 0;
}
于 2013-08-08T16:49:53.570 回答