如果我想计算从std :: istream检索的一堆数字的总和,我可以执行以下操作:
// std::istream & is = ... int total = std::accumulate(std::istream_iterator<int>(is),std::istream_iterator<int>(),0);
但是,如果我想计算他们的平均值,我需要积累两个不同的结果:
>总和(std :: accumulate)
总计数(std :: distance)
有没有办法“合并”这两种算法,并且在迭代器范围的单次传递中并行运行它们?我想做一些像:
using std::placeholders; int total,count; std::tie(total,count) = merge_somehow(std::istream_iterator<int>(is),std::bind(std::accumulate,_1,_2,0),std::distance); double average = (double)total / count;
这可能吗?