由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - C++ template Questions
相关主题
帮我看看这两个题目回答今早google电面报告
大家来讨论一下c++吧C++ Singleton Template - 编译通不过
ANY IDEA?C++ online Test 一题
问一道C++ template的面试题C++在vector里找>50的数,怎么找?
一道A家店面题求解问个简单的C++ 函数参数问题
请教一个C++问题问个C++模板定义的问题
一道STL面试题问一个C++ delete 节点的问题
C++问题包子求大牛:C++的list iterator实现
相关话题的讨论汇总
话题: reduce话题: container话题: function话题: typename
进入JobHunting版参与讨论
1 (共1页)
q*******p
发帖数: 39
1
有1道题请教大家
1. 实现 Reduce function using templates. The Reduce fn applies a function
of two arguments cumulatively to the items of an STL container, from
begin() to end(), so as to reduce the sequence to a single value. For
example, Reduce(, std::plus()) should
calculate ((((1+2)+3)+4)+5).
class NotEnoughElements {};
template
typename Container::value_type
Reduce(const Container& c, Function fn) throw (NotEnoughElements)
{
实现

}
1 (共1页)
进入JobHunting版参与讨论
相关主题
包子求大牛:C++的list iterator实现一道A家店面题求解
请教个C++的基础问题请教一个C++问题
真是老了脑子不好使了,struct和class的区别都没答上一道STL面试题
phone interviewC++问题
帮我看看这两个题目回答今早google电面报告
大家来讨论一下c++吧C++ Singleton Template - 编译通不过
ANY IDEA?C++ online Test 一题
问一道C++ template的面试题C++在vector里找>50的数,怎么找?
相关话题的讨论汇总
话题: reduce话题: container话题: function话题: typename