在C ++中迭代部分地图

时间:2013-02-27 00:08:27

标签: c++

如何在C ++中仅迭代部分地图?我的最终目标是让多个线程迭代它们的地图部分并计算一些值。地图的类型为std::map<std::string, std::vector<double> >

2 个答案:

答案 0 :(得分:2)

这是在C ++ 11中执行此操作的简单方法:

#include <map>
#include <string>
#include <vector>
#include <algorithm>
#include <future>
#include <iostream>

typedef std::map<std::string, std::vector<double>> map_type;

void do_work(map_type::iterator b, map_type::iterator e)
{
    std::for_each(b, e, [] (map_type::value_type const& p) 
    {
        std::for_each(p.second.begin(), p.second.end(), [] (double d) 
        {
            /* Process an element of the vector... */
        });
    });
}

int main()
{
    map_type m;

    size_t s = m.size();
    int quarter = s / 4;
    auto i1 = m.begin();
    auto i2 = std::next(i1, quarter);
    auto i3 = std::next(i2, quarter);
    auto i4 = std::next(i3, quarter);
    auto i5 = m.end();

    std::vector<std::future<void>> futures;
    futures.push_back(std::async(do_work, i1, i2));
    futures.push_back(std::async(do_work, i2, i3));
    futures.push_back(std::async(do_work, i3, i4));
    futures.push_back(std::async(do_work, i4, i5));

    for (auto& f : futures) { f.wait(); }
}

答案 1 :(得分:1)

如果要按数字平均分割工作,则映射可能不是最佳数据结构。您需要迭代map并找到特定位置的迭代器。如果你使用提供随机访问迭代器的容器,比如std :: vector,那么你可以算术地计算迭代器。 如果你想按字母顺序这样做,那么你可以这样做:

typedef std::map<std::string,std::vector<double>> data;

void process( data::iterator beg, data::iterator end );
data dt;
{
   auto task1 = std::async( process, dt.begin(), dt.lower_bound( "n" ) );
   auto task2 = std::async( process, dt.lower_bound( "n" ), dt.end() );
}

假设所有字符串都是小写的。