我有一个装满成对的容器.我想使用STL通用算法来迭代(在我的情况下,它将是inner_product,但将其视为一个通用问题).
我使用的算法首先要求迭代器.我可以提供特殊的迭代器,首先和最后一个不会在对上迭代,而是在每对的第一个元素上迭代?
我使用的算法首先要求迭代器.我可以提供特殊的迭代器,首先和最后一个不会在对上迭代,而是在每对的第一个元素上迭代?
我知道我可以手动执行,提供一个手工的函数对象,它将是标准容器迭代器周围的包装器,将它引用到对本身的对象的第一个成员,但我认为还有一个聪明的为我做这件事会是什么?
解决方法
我看了一下,发现了boost :: transform_iterator.我已经提出了这个代码.令人惊讶的是它的效果如何:
#include <map> #include <algorithm> #include <iostream> #include <string> #include <iterator> #include <boost/iterator/transform_iterator.hpp> #include <boost/bind.hpp> #include <boost/function.hpp> int main() { typedef std::map<std::string,int>::value_type value_type; std::map<std::string,int> a; a["one"] = 1; a["two"] = 2; // returns the second element boost::function<int(value_type&)> f = boost::bind(&value_type::second,_1); std::copy(boost::make_transform_iterator(a.begin(),f),boost::make_transform_iterator(a.end(),std::ostream_iterator<int>(std::cout," ")); }
它将标准输出“1 2”打印.