list<map<string,string>>遍历代码怎么写
时间: 2023-11-10 12:13:31 浏览: 83
下面是一个示例代码,演示如何遍历list中的map元素:
```
#include <iostream>
#include <list>
#include <map>
using namespace std;
int main() {
list<map<string, string>> mylist;
// 添加两个map元素到list中
map<string, string> map1;
map1["name"] = "Alice";
map1["age"] = "25";
mylist.push_back(map1);
map<string, string> map2;
map2["name"] = "Bob";
map2["age"] = "30";
mylist.push_back(map2);
// 遍历list中的map元素
for (auto it = mylist.begin(); it != mylist.end(); ++it) {
// 遍历map中的键值对
for (auto it2 = it->begin(); it2 != it->end(); ++it2) {
cout << it2->first << ": " << it2->second << endl;
}
cout << endl;
}
return 0;
}
```
输出结果为:
```
name: Alice
age: 25
name: Bob
age: 30
```
在上面的代码中,我们使用了两个嵌套的循环来遍历list中的map元素和map中的键值对。外层循环迭代list中的map元素,内层循环遍历每个map中的键值对,并输出它们的键和值。
阅读全文