从嵌套的multimap访问multimap :: equal_range返回的所有值

时间:2014-03-29 20:35:09

标签: c++ map multimap

我已经声明了一个包含字符串和地图的多图。该地图包含字符串和一对整数。

std::multimap<string, std::map<string, std::pair<int, int>>> traders;
std::map<string, std::pair<int, int>> products;
std::pair<int, int> side;

我通过以下方式为该多重图添加新值:

products.emplace(stringValue1, std::pair<int, int>(intValue1, intValue2));
traders.emplace(stringValue2, products);

现在,我遇到的问题。 我试图找到具有相同键值的交易者,然后读取每个找到的交易者的相关值。要查找具有给定键值的交易者,我使用以下代码并且它可以正常工作

std::pair< 
    std::multimap<string, std::map<string, std::pair<int, int>>>::iterator, 
    std::multimap<string, std::map<string, std::pair<int, int>>>::iterator
> ret;
ret = traders.equal_range(stringKeyValue);

我可以通过以下代码

访问multimap的第一个值(字符串)
std::multimap<string, std::map<string, std::pair<int, int>>>::iterator itr1 = ret.first;
std::cout <<  " " << itr1->first << std::endl;

但我无法访问multimap的任何其他元素。如果你查看我的multimap声明,我不仅需要访问第一个字符串,还需要访问第二个字符串和一对与返回的交易者相关联的int。

我尝试的可能是不同的东西,但它们都没有奏效,我的脑袋现在融化了。我希望你能帮助别人。感谢。

1 个答案:

答案 0 :(得分:1)

也许这会有所帮助。我还没有测试过它。

typedef std::map<string, std::pair<int, int> > TraderProductMap;
typedef std::multimap<string, TraderProductMap> TraderMap;

typedef TraderProductMap::iterator TraderProductMapIter;
typedef TraderMap::iterator TraderMapIter;

std::pair<TraderMapIter, TraderMapIter> range;
range = traders.equal_range(stringKeyValue);

for(TraderMapIter itTrader = range.first;itTrader != range.second;++itTrader) {

    std::cout <<  " " << itTrader->first << std::endl;

    for(TraderProductMapIter itProduct = itTrader->second.begin();itProduct != itTrader->second.end();++itProduct) {
        std::cout <<  "  " << itProduct->first << " " itProduct->second->first << " " << itProduct->second->second << std::endl;
    }

    std::cout << std::endl;

}