C-Read txt并写入数组

时间:2013-08-22 16:38:22

标签: c

之前我问了一个类似的问题,链接就在这里。 C-Read txt into txt file

刚发现代码中存在一点问题,即数组的第一列被赋予“size”的值。

我想在这里发布一个新的希望有人可以提供帮助。


我在/user/test/key.txt目录中有一个txt文档。 txt中的内容如下:

10 21 34 45 29 38 28
(blank line)
29 47 28 32 31 29 20 12 24
(blank line)

我想从txt中读取这些数字并写入两行数组。阵列的长度可以根据txt中的较长行而变化。 它可能在数组中变成这样:

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

谢谢!

1 个答案:

答案 0 :(得分:1)

那就是你明确接受的答案,这是一个非常好的主意,因为不知怎的,你必须确定特定行包含多少列。 另一个节点是让每行中的特殊值确定结束(如字符串中的'\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);
        // size+1 is still necessary, the additional element is now needed for the delimiting value instead of the number of elements
        key1[i] = malloc((size+1)*sizeof(int));
        /* CHANGE: don't store size in col 0
        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);
        }
        now we just do: */ 
        if(!key1[i]){
            fprintf(stderr, "It was not possible to secure the memory.\n");
            exit(2);
        }
        /* CHANGE: we start with index 0 */
        //for(int j = 1; j <= size ;++j){
        for(int j = 0; j < size ;++j){
            fscanf(fp, "%d", &key1[i][j]); 
        }
        /* CHANGE: we add a final value to determine the end of the row */
        key[i][size] = -1;   // choose a value that cannot occur in your data
    }
    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;
}