c++: std::accumulate使用

实现

/**
   *  @brief  Accumulate values in a range with operation.
   *
   *  Accumulates the values in the range [first,last) using the function
   *  object @p __binary_op.  The initial value is @p __init.  The values are
   *  processed in order.
   *
   *  @param  __first  Start of range.
   *  @param  __last  End of range.
   *  @param  __init  Starting value to add other values to.
   *  @param  __binary_op  Function object to accumulate with.
   *  @return  The final sum.
   */
  template<typename _InputIterator, typename _Tp, typename _BinaryOperation>
    inline _Tp
    accumulate(_InputIterator __first, _InputIterator __last, _Tp __init,
	       _BinaryOperation __binary_op)
    {
      // concept requirements
      __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
      __glibcxx_requires_valid_range(__first, __last);

      for (; __first != __last; ++__first)
	__init = __binary_op(__init, *__first);
      return __init;
    }

累加

   std::vector<int> vec(100,1);
    int s=0;
    for(auto& i:vec){
        s+=i;
    }
    std::cout<<s<<" "<<vec.size()<<std::endl;
    std::cout<<"sum:"<<std::accumulate(vec.begin(),vec.end(),int{0})<<std::endl;

输出

Hello World!
100 100
sum:100

累乘

 vec.push_back(2);
 vec.push_back(3);
 std::cout<<"multiplies:"<<std::accumulate(vec.begin(),vec.end(),int{1},std::multiplies<int>())<<std::endl;

输出

multiplies:6

自定义

可以使用形如fun(R,T)->R的函数,返回R类型。T为集合的类型,R为自定义类型,如下面的例子,统计字符串中\n的数量,R为int,T为char

 std::string str{"abc\ncde\nfgh\n"};
 std::cout<<"line::"<<std::accumulate(str.begin(),str.end(),0,[](int nCount,char ch){return (ch == '\n')?(nCount+1):nCount;});

输出

line::3
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值