Answers for "set map value from iterator c++"

C++
1

how to iterater map of sets in c++

map<string, set<string>> mp;
     for (auto const& pair : mp) {
         cout << pair.first << ": ";
         for (auto const& elem : pair.second) {
             cout << elem << ", ";
         }
         cout << "n";
     }
Posted by: Guest on July-30-2021
3

c++ map iterator

#include <iostream>
#include <map>
 
int main() {
  std::map<int, float> num_map;
  // calls a_map.begin() and a_map.end()
  for (auto it = num_map.begin(); it != num_map.end(); ++it) {
    std::cout << it->first << ", " << it->second << 'n';
  }
}
Posted by: Guest on March-08-2020

Browse Popular Code Answers by Language