gpt4 book ai didi

c++ - 从文本文件创建 vector vector

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

我必须从一个文本文件创建一个 vector vector 。所讨论的值是整数。

这些值是具有不同行的固定 3 列。但是,我认为这不会导致我的问题。我认为我遇到的主要问题是文本文件中的值没有被放入 vector 的 vector 中。相关代码如下:

ifstream infile("material_properties.txt");
if (!infile)
{
cout << "File material_properties.txt not found." << endl;
return -1;
}

int lines = 0;
string line;
while (getline(infile, line))
{
++lines;
}

vector< vector<int> > properties(lines,vector<int>(3));

while (getline(infile,line)) {

for(int i=0; i < lines; i++){
for (int j=0; j<4; j++){
infile >> properties[i][j];
}
}

}

我对编码很陌生,很困惑。

最佳答案

您需要倒回您的 ifstream,添加:

infile.seekg(0);

在你的第二个之前while (getline(infile,line)) {

这是因为当您读取文件时,指向当前文件位置的内部指针会递增。它在第一个 getline 循环中一直递增到文件末尾,因此在第二个循环中您需要倒带它。

你的第二个错误是在;

vector< vector<int> > properties(lines,vector<int>(3));

您在 vector of vector 中创建了三个元素的 vector,但在读取循环中您从文件中添加了四个元素。您应该将其更改为 vector<int>(4) .

第三个问题,是你解析文件的方式。在你的第二个循环中,你逐行读取文件,这表明你想解析它,但你的代码实际上是错误的:

int i = 0;
while (getline(infile,line)) {
// This actually makes no sense, you have read one line
// which you should parse and put results into properties vector.
//for(int i=0; i < lines; i++){
// for (int j=0; j<4; j++){
// infile >> properties[i][j];
// }
//}

// parsing would look like this (depends on your input file):
std::istringstream in(line);
in >> properties[i][0] >> properties[i][1] >> properties[i][2];
i++;
}

关于c++ - 从文本文件创建 vector vector ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34027618/

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