Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
341 views
in Technique[技术] by (71.8m points)

fread - C/C++ read binary files (flaot numbers) at one time

I was wondering is there a way to speed up fread in C or C++? For example, if I want to read a binary file containing 100 4-byte float numbers. I do:

float *data=(float*)calloc(sizeof(float), 100);
float datatmp=0.0;
f=fopen("datafilename","rb");
for(int i=0;i<100;i++){
   fread(&datatmp,4,1,f);
   data[i]=datatm;
}
flcose(f);

My question is: can I read all the 100 float numbers at one time and put them in the data array? Will this be faster than using a loop?

Thanks.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

you can read all one time. fread(data,sizeof(float)*100,1,f);


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...