gpt4 book ai didi

c - 从文本文件中读取数据值以及 C 中的行数和列数

转载 作者:太空宇宙 更新时间:2023-11-04 04:23:32 26 4
gpt4 key购买 nike

我有一个 .txt 格式的数据文件,有 7 行和 4 列。我正在使用以下代码读取这些值:

#include<stdio.h>
#include<math.h>
int main()
{
int N=7, i;
double x[7], y[7], p[7], q[7];
FILE *f1;
f1=fopen("data.txt","r");
for(i=0;i<N;i++)
fscanf(f1,"%lf %lf %lf %lf", &p[i], &q[i], &x[i], &y[i]);
fclose(f1);
}

这里的N是数据文件的行数,这是我事先知道的。

有没有什么方法可以读取数据文件中的行数,这样我就可以在事先不知道 N 值的情况下将这段代码推广到任何数据文件。

注意:列数在不同的数据文件之间没有变化。

最佳答案

您必须自己计算行数(例如 this),然后将文件指针倒回到文件的开头,以实际解析它,现在您找到了 N

要将指针重置为文件的开头,请执行以下操作:

fseek(fptr, 0, SEEK_SET);

另一种方法是找出数据的大小并进行一些计算,如下所示:

% Read the vector size
d = fread (fid, 1, 'int');
vecsizeof = 1 * 4 + d * 4;

% Get the number of vectrors
fseek (fid, 0, 1);
a = 1;
bmax = ftell (fid) / vecsizeof;
b = bmax;

if nargin >= 2
if length (bounds) == 1
b = bounds;

elseif length (bounds) == 2
a = bounds(1);
b = bounds(2);
end
end

assert (a >= 1);
if b > bmax
b = bmax;
end

if b == 0 | b < a
v = [];
fclose (fid);
return;
end

% compute the number of vectors that are really read and go in starting positions
n = b - a + 1;
fseek (fid, (a - 1) * vecsizeof, -1);

相关可以找到代码here .

关于c - 从文本文件中读取数据值以及 C 中的行数和列数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43936152/

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