Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In c++ STL map, i have a definition like

   map<string, map<int, string> >;

and i iterate it using the following code.

   for( map<string, map<int, string> >::iterator ii=info.begin(); ii!=info.end(); ++ii){
       for(map<int, string>::iterator j=ii->second.begin(); j!=ii->second.end();++j){
           cout << (*ii).first << " : " << (*j).first << " : "<< (*j).second << endl;
       }
   }

My doubt is is this the correct way to iterate or is there a better way to do so? The above code works for me. But m looking for a more elegant solution.

share|improve this question
To actually iterate over all entries of the outer map and all inner maps as well, there is no "better" solution, I'd say. Two nested loops, no problem. – Flinsch Dec 23 '10 at 6:54
As a side question regarding elegance, what's wrong with the -> operator? – Christian Rau May 10 '12 at 7:17
there is nothing wrong or unelegent about that code.. Its just that i thot there might be a better way... – Prasanth Madhavan May 10 '12 at 12:47

5 Answers

up vote 8 down vote accepted

This is correct, it just lacks a few typedef and readability improvements :

typedef std::map<int, std::string> inner_map;
typedef std::map<std::string, inner_map> outer_map;

for (outer_map::iterator i = outerMap.begin(), iend = outerMap.end(); i != iend; ++i)
{
    inner_map &innerMap = i->second;
    for (inner_map::iterator j = innerMap.begin(), jend = innerMap.end(); j != jend; ++j)
    {
        /* ... */
    }
}
share|improve this answer
Could use const iterators too in this case, not that it makes a lot of difference. – Steve Jessop Dec 23 '10 at 10:54

If C++11 is available you may use range for loop:

for(auto &i: info) {
    for(auto &j: i.second) {
        /* */
    }
}

If only C++11 auto is available:

for( auto i=info.begin(); i!=info.end(); ++i) {
   for( auto j=i->second.begin(); j!=i->second.end(); ++j) {
       /* */
   }
}

If you may use BOOST there is BOOST_FOREACH:

typedef std::map<int, std::string> inner_map;
typedef std::map<std::string, inner_map> outer_map;

outer_map outer;

BOOST_FOREACH(outer_map::value_type &outer_value, outer){
    BOOST_FOREACH(inner_map::value_type &inner_value, outer_value->second){
        /* use outer_value and inner_value as std::pair */
    }
}
share|improve this answer

If c++11 is available, we could use stl algorithm for_each and lamda functions to get a elegant solution

typedef map<int, string> INNERMAP;
typedef map<string, INNERMAP> OUTERMAP;

OUTERMAP theMapObject;
// populate the map object

// iterate the map object now

std::for_each(theMapObject.cbegin(), theMapObject.cend(), 
    [](const OUTERMAP::value_type& outerMapElement)
{
    // process the outer map object
    const INNERMAP& innerMapObject = outerMapElement.second;
    std::for_each(innerMapObject.cbegin(), innerMapObject.cend(), 
        [](const INNERMAP::value_type& innermapElemen)
    {
        //process the inner map element
    });
});
share|improve this answer

If you want to iterate through both maps, then the way you presented is the best way. Now, if there is something specific you want to do then you might be better with using a function from the algorithm header.

share|improve this answer

While it's not clear what problem you are solving by having a map inside a map, I don't think there is a better way of iterating on all the items without using these iterators. The only thing you can do to improve code readability is to use typedefs on the template types.

However, won't it be a better idea to define your map as

multimap <string, MyClass>

where MyClass is defined as a pair of integer and a string, as well as a toString() method to dump the contents, etc?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.