一:需求描述
我们希望一个数字或则其他字符串可以对应 一串数,
#include<iostream>
#include<map>
#include<vector>
using namespace std; int main(){map<int,vector<int> > m;map<int,vector<int> >:: iterator t;vector<int> v;for(int i = 0; i < 3; i++){for(int j = 0; j < 2; j++){int num;cin >> num;v.push_back(num);}m[i] = v;v.clear();}//遍历map数组 for(t = m.begin(); t != m.end(); t++){cout << t->first << ' ';vector<int> :: iterator vt;for(vt = t->second.begin(); vt != t->second.end(); vt++){cout << *vt << " "; }cout << endl;}}
这里0 对应两个数 6 7
1对应两个数 8 9
2对应两个数 10 11