0

如果我有一个看起来像这样的文本文件:

4

1 2 3

4 5 6

7 8 9

10 11 12

我想将每一列数字读入一个变量 x、y 和 z。所以读后,z = [3, 6, 9, 12]。

如何解析文本文件以将每列的每一行存储在其自己的变量中?

所以也许将整个文本文件存储为字符串,每行都带有“/n”,然后为每行解析 x=sting[i], y=string[i+1], z=string[i+2]?或类似的东西。

我认为必须有更好的方法来做到这一点,尤其是当 n 非常大的时候。

~ (编辑)顶部的第一个数字(在本例中为 4)决定了文本文件将有多少行。因此,如果我设置 n=4,则有一个 for 循环:for(i=0; i

4

3 回答 3

3

一次读取一项,将每一项添加到适当的数组中:

std::vector<int> x,y,z;
int xx, yy, zz;
while(std::cin >> xx >> yy >> zz) {
  x.push_back(xx);
  y.push_back(yy);
  z.push_back(zz);
}


编辑:响应添加的要求

int n;
if( !( std::cin >> n) )
  return;

std::vector<int> x,y,z;
int xx, yy, zz;
while(n-- && std::cin >> xx >> yy >> zz) {
  x.push_back(xx);
  y.push_back(yy);
  z.push_back(zz);
}
于 2012-09-04T20:53:52.280 回答
1

n寻求“通用”解决方案(列数在哪里)。在这种情况下,最好使用向量的向量,而不是单独的向量变量:

std::fstream file("file.txt", ios_base::in);
std::vector< std::vector<int> > vars(n, vector<int>(100));
int curret_line = 0;

while (!file.eof())
{
  for (int i=0; i<n; ++i)
  {
    file >> vars[i][current_line];
  }
  ++current_line;
  // if current_line > vars[i].size() you should .resize() the vector
}

编辑:根据下面的评论更新循环

int i=0, current_line = 0;
while (file >> vars[i][current_line])
{
  if (i++ == n) 
  {
    i = 0;
    ++current_line;
  }
}
于 2012-09-04T21:22:00.370 回答
0

这是一种方法,带有一些基本的错误检查。我们会将少于或多于 3 个整数的行视为错误:

#include <fstream>
#include <string>
#include <sstream>
#include <cctype>    

std::ifstream file("file.txt");
std::string line;
std::vector<int> x,y,z;

while (std::getline(file, line)) {
    int a, b, c;
    std::istringstream ss(line);

    // read three ints from the stream and see if it succeeds
    if (!(ss >> a >> b >> c)) {
        // error non-int or not enough ints on the line
        break;
    }

    // we read three ints, now we ignore any trailing whitespace
    // characters and see if we reached the end of line
    while (isspace(ss.peek()) ss.ignore();
    if (ss.get() != EOF) {
        // error, there are more characters on the line
        break;
    }

    // everything's fine
    x.push_back(a);
    y.push_back(b);
    z.push_back(c);
}
于 2012-09-04T21:29:44.513 回答