このコードを参照してください。イテレータを使用して、2D 文字列ベクトルの特定の要素の値を変更する必要があります。これを行うには、インデックスを使用して for ループを使用できます。しかし、ここで必要なのは、イテレータを直接使用して要素を参照することです。何か(*ite)[0] = "new name"
アイデアはありますか?便宜上、ここに完全に機能するコードを追加しました
#include <iostream>
#include <vector>
#include <string>
#include <sstream>
using namespace std;
string convertInt(int number)
{
stringstream ss;
ss << number;
return ss.str();
}
int main()
{
vector<vector<string>> studentList;
for(int i=0; i<10; i++){
vector<string> student;
student.push_back("name-"+convertInt(i));
student.push_back(convertInt(i+10));
studentList.push_back(student);
}
vector<string> temp;
for(vector<vector<string>>::iterator ite = studentList.begin(); ite != studentList.end(); ++ite){
temp = *ite;
if(temp[0].compare("name-5")==0){
cout << "Changeing the name of student 5" << endl;
// I need to change the studentList[5][0] (original value not the one in temp vector) at here using iterator ite
}
}
return 0;
}