要反向遍历C++ map,可以使用rbegin()和rend()方法。以下是一个示例代码:
#include <iostream>
#include <map>
int main() {
std::map<int, std::string> myMap = {{1, "one"}, {2, "two"}, {3, "three"}};
// 使用反向迭代器反向遍历map
for (auto it = myMap.rbegin(); it != myMap.rend(); ++it) {
std::cout << it->first << " : " << it->second << std::endl;
}
return 0;
}
在这个示例中,我们使用rbegin()方法获取map的反向迭代器,rend()方法获取map的结束迭代器。然后使用for循环来遍历map,输出每个键值对。