gpt4 book ai didi

c - 从 C 文件中读取逗号分隔的数字

转载 作者:行者123 更新时间:2023-12-01 11:51:58 25 4
gpt4 key购买 nike

我在尝试读取以逗号分隔的数字的文件时遇到问题,我想在这样的文件中创建一个整数数组的函数(不知道数组一开始有多少个参数):

1,0,3,4,5,2
3,4,2,7,4,10
1,3,0,0,1,2

等等。我想要的结果是这样的

int v[]={1,0,3,4,5,2}

对于文件中的每一行(显然每行中都有值),所以我可以将这个数组添加到矩阵中。我尝试使用 fscanf,但我似乎无法让它在每一行的末尾停止。我还尝试了 fgets、strtok 以及我在 Internet 上找到的许多其他建议,但我不知道该怎么做!

我在 32 位机器上使用 Eclipse Indigo。

最佳答案

#include <stdio.h>
#include <stdlib.h>

int main(){
FILE *fp;
int data,row,col,c,count,inc;
int *array, capacity=10;
char ch;
array=(int*)malloc(sizeof(int)*capacity);
fp=fopen("data.csv","r");
row=col=c=count=0;
while(EOF!=(inc=fscanf(fp,"%d%c", &data, &ch)) && inc == 2){
++c;//COLUMN count
if(capacity==count)
array=(int*)realloc(array, sizeof(int)*(capacity*=2));
array[count++] = data;
if(ch == '\n'){
++row;
if(col == 0){
col = c;
} else if(col != c){
fprintf(stderr, "format error of different Column of Row at %d\n", row);
goto exit;
}
c = 0;
} else if(ch != ','){
fprintf(stderr, "format error of different separator(%c) of Row at %d \n", ch, row);
goto exit;
}
}
{ //check print
int i,j;
// int (*matrix)[col]=array;
for(i=0;i<row;++i){
for(j=0;j<col;++j)
printf("%d ", array[i*col + j]);//matrix[i][j]
printf("\n");
}
}
exit:
fclose(fp);
free(array);
return 0;
}

关于c - 从 C 文件中读取逗号分隔的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10709804/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com