如何打印vector <map <string,int =“”>&gt;在C ++中

时间:2018-05-08 07:13:36

标签: c++ dictionary vector iterator access

vector < map< string, int > >类型。

当我知道向量索引时,我只想打印出地图字符串,但它不起作用。

中发生错误
cout<< myVec.at(intTmp)->first<<"\n";

我不确定如何访问矢量内的地图。

 #include <iostream>
 #include <string>
 #include <map>
 #include <vector>
using namespace std;

int N, M;
vector<map<string, int> > myVec;

bool isDigits(string& s){

  for(int i=0; i<s.size(); ++i){
      if(!isdigit(s[i])) return false;
  }
    return true;
}


int main()
{
    cin >> N >> M;

    for(int i=1; i<=N; ++i){
        string tmp;
        cin.clear();
        getline(cin, tmp);
        myVec.emplace_back(tmp, i);
    }

    for(int i=1; i<=M; ++i){
        string tmp1;
        cin.clear();
        getline(cin, tmp1);
        if(isDigits(tmp1)){
            int intTmp = atoi(tmp1.c_str());
            cout<< myVec.at(intTmp)->first<<"\n";
        }
    }

    return 0;
}

2 个答案:

答案 0 :(得分:0)

使用此代码段:

for(auto map2:myVec)
{   
   for(auto it = map2.begin();it != map2.end();it++)
    cout << (it->first).c_str() << " " << it->second <<endl;
}

答案 1 :(得分:0)

这是你必须在地图上迭代的地图

vector< map<string,int> > myVec;
for( int i=0; i< myVec.size(); i++) {
    for(auto it = myVec[i].begin(); it != myVec[i].end(); it++) {
        cout<<it->first;
    }
}