如何在C ++中追加向量矩阵?

时间:2014-04-14 14:31:23

标签: c++ vector

我有一个结构矢量"数组"这看起来像

struct competitor
{
    vector<string> name;
    vector<int> points;
};

我有一个文件,其中包含我希望阅读的名称和10个结果点,但我无法附加到矢量。我无法读懂它

int i = 0;
string tmp;

while(!x.eof())
{
   getline(x, tmp, '\t');
   t[i].name.push_back(tmp);
   // tmp >> t[i].name;
   cout << tmp << endl;

   for(int i = 0; i < 11; i++)
   {
       x >> tmp;
       t[i].pontok.push_back(tmp);
   }
   i++;
}

0 个答案:

没有答案