这是使用手工算法的非并行实现。我敢肯定,更精通的人functional
可以提出更优雅的解决方案。问题transform
是,我们不能将它与返回的函数一起使用,void
我不记得另一个 stdlib 函数需要两个范围并将它们相互应用。如果你真的想并行化这个,它需要在apply_to
函数中完成。启动一个async
任务(例如std::async(*begin++, *begin2++)
可以工作,虽然我没有这方面的经验并且不能让它在 gcc 4.6.2 上工作。
#include <iterator>
#include <memory>
#include <vector>
#include <algorithm>
#include <functional>
// this is very naive it should check call different versions
// depending on the value_type of iterator2, especially considering
// that a tuple would make sense
template<typename InputIterator1, typename InputIterator2>
void apply_to(InputIterator1 begin, InputIterator1 end, InputIterator2 begin2) {
while(begin != end) {
(*begin++)(*begin2++);
}
}
struct Foo {
};
struct Bar {
void f(std::unique_ptr<Foo>) { }
};
int main()
{
std::vector< std::unique_ptr<Foo> > foos(10);
std::vector< Bar > bars(10);
std::vector< std::function<void(std::unique_ptr<Foo>) > > funs;
std::transform(bars.begin(), bars.end(), std::back_inserter(funs),
// non-const due to f non-const, change accordingly
[](Bar& b) { return std::bind(&Bar::f, &b, std::placeholders::_1); });
// now we just need to apply each element in foos with funs
apply_to(funs.begin(), funs.end(), std::make_move_iterator(foos.begin()));
return 0;
}