我想遍历map<string, int>中的每个元素,而不知道它的任何string-int值或键。

到目前为止我有:

void output(map<string, int> table)
{
       map<string, int>::iterator it;
       for (it = table.begin(); it != table.end(); it++)
       {
            //How do I access each element?  
       }
}

当前回答

如果你只想迭代内容而不改变值 做的事:

for(const auto & variable_name : container_name(//here it is map name)){
    cout << variable_name.first << " : " << variable_name.second << endl; 
} 

如果你想修改映射的内容,删除const并保留&(如果你想直接修改容器内的内容)。如果你想使用容器值的副本,也要删除&号;之后,你可以在“variable_name”上使用.first和.second来访问它们。

其他回答

其他方式:

map <int, string> myMap = {
    { 1,"Hello" },
    { 2,"stackOverflow" }
};
for (auto iter = cbegin(myMap); iter != cend(myMap); ++iter) {
    cout << iter->second << endl;
}

如果你只想迭代内容而不改变值 做的事:

for(const auto & variable_name : container_name(//here it is map name)){
    cout << variable_name.first << " : " << variable_name.second << endl; 
} 

如果你想修改映射的内容,删除const并保留&(如果你想直接修改容器内的内容)。如果你想使用容器值的副本,也要删除&号;之后,你可以在“variable_name”上使用.first和.second来访问它们。

你可以这样做:

map<string, int>::iterator it;

for (it = symbolTable.begin(); it != symbolTable.end(); it++)
{
    std::cout << it->first    // string (key)
              << ':'
              << it->second   // string's value 
              << std::endl;
}

在c++ 11(及以后)中,

for (auto const& x : symbolTable)
{
    std::cout << x.first  // string (key)
              << ':' 
              << x.second // string's value 
              << std::endl;
}

在c++ 17(及以后)中,

for (auto const& [key, val] : symbolTable)
{
    std::cout << key        // string (key)
              << ':'  
              << val        // string's value
              << std::endl;
}

由于P0W为每个c++版本提供了完整的语法,我想通过查看您的代码来添加更多的点

始终采用const & as参数,以避免同一对象的额外副本。 使用unordered_map,因为它总是更快使用。请看这个讨论

下面是一个示例代码:

#include <iostream>
#include <unordered_map>
using namespace std;

void output(const auto& table)
{
   for (auto const & [k, v] : table)
   {
        std::cout << "Key: " << k << " Value: " << v << std::endl;
   }
}

int main() {
    std::unordered_map<string, int> mydata = {
        {"one", 1},
        {"two", 2},
        {"three", 3}
    };
    output(mydata);
    return 0;
}

它甚至可以用经典的for循环来实现。 手动推进迭代器。

typedef std::map<int, int> Map;

Map mymap;

mymap['a']=50;
mymap['b']=100;
mymap['c']=150;
mymap['d']=200;

bool itexist = false;
int sizeMap = static_cast<int>(mymap.size());
auto it = mymap.begin();
for(int i = 0; i < sizeMap; i++){
    std::cout << "Key: " << it->first << " Value: " << it->second << std::endl;
    it++;
}