从输入文件中读取多行

时间:2016-01-23 04:51:42

标签: c++ arrays ifstream

我的输入文件有多行({1}} s的行(数组)。我不知道如何分别阅读每个阵列。我可以读取所有int并将它们存储到一个数组中,但我不知道如何从输入文件中单独读取每个数组。理想情况下,我想通过不同的算法运行数组,并在它们上面执行执行时间。

我的输入文件:

int

输入流:

[1, 2, 3, 4, 5]
[6, 22, 30, 12
[66, 50, 10]

转换功能:

ifstream inputfile;
inputfile.open("MSS_Problems.txt");
string inputstring;
vector<int> values;

while(!inputfile.eof()){
        inputfile >> inputstring;
        values.push_back(convert(inputstring));
}
inputfile.close();

我应该设置一个for(int i=0; i<length; ++i){ if(str[i] == '['){ str[i] = ' '; }else if(str[i] == ','){ str[i] = ' '; }else if(str[i] == ']'){ str[i] = ' '; } } return atoi(str.c_str()); 函数来检查是否有括号然后在那里结束?如果我这样做,如何告诉程序在下一个开放式括号中开始读取并将其存储在新的向量中?

1 个答案:

答案 0 :(得分:1)

也许这就是你想要的?

数据

 [1,2,3,4,5]
 [6,22,30,12]
 [66,50,10]

输入流:

 std::ifstream inputfile;
 inputfile.open("MSS_Problems.txt");
 std::string inputstring;
 std::vector<std::vector<int>> values;

 while(!inputfile.eof()){
        inputfile >> inputstring;
        values.push_back(convert(inputstring));
 }
 inputfile.close(); 

转换功能:

 std::vector<int> convert(std::string s){
      std::vector<int> ret;
      std::string val;
      for(int i = 0; i < s.length; i++){
          /*include <cctype> to use isdigit */ 
          if(std::isdigit(str[i]))
             val.push_back(str[i]); //or val += str[i];
          if(str[i] == ',' || str[i] == ']') 
          {
              // the commma and end bracket tells us we are at the end of our value
             ret.push_back(std::atoi(val.c_str())); //so get the int
             val.clear(); //and reset our value. 
          }
      }
       return ret;
 }

std::isdigit是一个有用的功能,让我们知道我们正在查看的角色是否为数字,因此您可以安全地忽略您的开括号。

这样你就可以将每一行的int作为multidemensional vector访问。或者,如果您的目标是将所有整数的一个向量存储在数据中,那么您的输入流循环应该是

 vector<int> values;

 while(!inputfile.eof()){
        inputfile >> inputstring;
        std::vector<int> line = convert(inputstring);
        //copy to back inserter requires including both <iterator> and <algorithm>
        std::copy(line.begin(),line.end(),std::back_inserter(values)); 
 }
 inputfile.close();

这是学习使用Copy to back_inserter的好方法。