参考http://www.careercup.com/question?id=17188673 by chetan.j9
void Insert( string s ) {
if( IsElementPresent(s) )
return;
myMap[s] = myMapVector.size();
unordered_map<string,int>::iterator it = myMap.find(s);
myMapVector.push_back(it);
}
Question> 能不能把unordered_map的迭代器存起来供以后检索?根据我的理解,在插入或删除一个元素后,迭代器会失效。
谢谢