如何在 C++ 中仅遍历地图的一部分?我的最终目标是让多个线程遍历它们所在的地图部分并计算一些值。地图的类型是std::map<std::string, std::vector<double> >
问问题
455 次
2 回答
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(); }
}
于 2013-02-27T00:26:44.540 回答
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() );
}
假设所有字符串都是小写的。
于 2013-02-27T00:22:43.887 回答