typedef std::map<int,int> CMyList;static CMyList myList;template<class t> struct second_equal{ typename typedef t::mapped_type mapped_type; typename typedef t::value_type value_type; second_equal(mapped_type f) : v(f) {}; bool operator()(const value_type &a) { return a.second == v;}; mapped_type v;};... int i = 7;CMyList::iterator it = std::find_if(myList.begin(),myList.end(),second_equal<CMyList>(i));
问题:如何在不提供自写模板的情况下在一行中进行此类查找?
解决方法 使用选择器从map_type中选择第一个或第二个元素.使用绑定器将值(i)绑定到std :: equal_to函数的一个参数.
使用composer将selector的输出用作equal_to函数的另一个参数.
//stl versionCMyList::iterator it = std::find_if( myList.begin(),std::compose1( std::bind2nd(equal_to<CMyList::mapped_type>(),i),std::select2nd<CMyList::value_type>())) ;//Boost.Lambda or Boost.Bind versionCMyList::iterator it = std::find_if( myList.begin(),bind( &CMyList::mapped_type::second,_1)==i);总结
以上是内存溢出为你收集整理的c – 如何仅使用粘合剂在地图中查找值全部内容,希望文章能够帮你解决c – 如何仅使用粘合剂在地图中查找值所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)