我有一个map
这样的:
map<string, pair<string,string> > myMap;
我已经使用以下方法将一些数据插入到我的地图中:
myMap.insert(make_pair(first_name, make_pair(middle_name, last_name)));
我现在如何打印地图中的所有数据?
我有一个map
这样的:
map<string, pair<string,string> > myMap;
我已经使用以下方法将一些数据插入到我的地图中:
myMap.insert(make_pair(first_name, make_pair(middle_name, last_name)));
我现在如何打印地图中的所有数据?
for(map<string, pair<string,string> >::const_iterator it = myMap.begin();
it != myMap.end(); ++it)
{
std::cout << it->first << " " << it->second.first << " " << it->second.second << "\n";
}
在 C++11 中,您不需要拼写map<string, pair<string,string> >::const_iterator
. 您可以使用auto
for(auto it = myMap.cbegin(); it != myMap.cend(); ++it)
{
std::cout << it->first << " " << it->second.first << " " << it->second.second << "\n";
}
注意使用cbegin()
和cend()
功能。
更简单的是,您可以使用基于范围的 for 循环:
for(const auto& elem : myMap)
{
std::cout << elem.first << " " << elem.second.first << " " << elem.second.second << "\n";
}
如果您的编译器支持(至少部分)C++11,您可以执行以下操作:
for (auto& t : myMap)
std::cout << t.first << " "
<< t.second.first << " "
<< t.second.second << "\n";
对于 C++03,我会使用std::copy
插入运算符:
typedef std::pair<string, std::pair<string, string> > T;
std::ostream &operator<<(std::ostream &os, T const &t) {
return os << t.first << " " << t.second.first << " " << t.second.second;
}
// ...
std:copy(myMap.begin(), myMap.end(), std::ostream_iterator<T>(std::cout, "\n"));
从C++17 开始,您可以使用基于范围的 for 循环和结构化绑定来迭代您的地图。这提高了可读性,因为您减少了代码中所需first
和second
成员的数量:
std::map<std::string, std::pair<std::string, std::string>> myMap;
myMap["x"] = { "a", "b" };
myMap["y"] = { "c", "d" };
for (const auto &[k, v] : myMap)
std::cout << "m[" << k << "] = (" << v.first << ", " << v.second << ") " << std::endl;
输出:
m[x] = (a, b)
m[y] = (c, d)