vector嵌套map并定义大小
时间: 2023-07-29 19:10:35 浏览: 164
可以通过以下方式定义指定大小的vector嵌套map:
```c++
#include <iostream>
#include <vector>
#include <map>
using namespace std;
int main()
{
vector<map<int, string>> vec_map(2); // 定义大小为2的vector,每个元素都是一个map<int, string>类型
vec_map[0][1] = "apple";
vec_map[0][2] = "banana";
vec_map[1][1] = "cat";
vec_map[1][2] = "dog";
for (auto maps : vec_map) {
for (auto [key, value] : maps) {
cout << key << " " << value << endl;
}
}
return 0;
}
```
输出结果同样为:
```
1 apple
2 banana
1 cat
2 dog
```
其中,`vector<map<int, string>> vec_map(2)`表示定义了大小为2的vector,每个元素都是一个空的`map<int, string>`类型。我们可以通过下标的方式访问vector中的元素,并使用下标的方式访问map中的元素进行赋值。最后,使用`for`循环遍历向量和`map`类型的元素,并输出其中的键值对。
阅读全文