如何有效地将二进制文件读入向量 C++
how to efficiently read a binary file into a vector C++
我需要将一个大型二进制文件 (~1GB) 读入 std::vector<double>
。我目前正在使用 infile.read
将整个内容复制到 char *
缓冲区(如下所示),并且我目前计划使用 reinterpret_cast
将整个内容转换为 doubles
。当然必须有一种方法可以将 doubles
直接放入 vector
?
我也不确定二进制文件的格式,数据是在 python 中生成的,所以可能都是浮点数
ifstream infile(filename, std--ifstream--binary);
infile.seekg(0, infile.end); //N is the total number of doubles
N = infile.tellg();
infile.seekg(0, infile.beg);
char * buffer = new char[N];
infile.read(buffer, N);
假设整个文件是双重的,否则这将无法正常工作。
std::vector<double> buf(N / sizeof(double));// reserve space for N/8 doubles
infile.read(reinterpret_cast<char*>(buf.data()), buf.size()*sizeof(double)); // or &buf[0] for C++98
我需要将一个大型二进制文件 (~1GB) 读入 std::vector<double>
。我目前正在使用 infile.read
将整个内容复制到 char *
缓冲区(如下所示),并且我目前计划使用 reinterpret_cast
将整个内容转换为 doubles
。当然必须有一种方法可以将 doubles
直接放入 vector
?
我也不确定二进制文件的格式,数据是在 python 中生成的,所以可能都是浮点数
ifstream infile(filename, std--ifstream--binary);
infile.seekg(0, infile.end); //N is the total number of doubles
N = infile.tellg();
infile.seekg(0, infile.beg);
char * buffer = new char[N];
infile.read(buffer, N);
假设整个文件是双重的,否则这将无法正常工作。
std::vector<double> buf(N / sizeof(double));// reserve space for N/8 doubles
infile.read(reinterpret_cast<char*>(buf.data()), buf.size()*sizeof(double)); // or &buf[0] for C++98