accumulate对vector直接求和。

函数:accumulate

作用:可对vector直接求和。

示例代码:

int sum=accumulate(nums.begin(),nums.end(),0);
第三个参数,设置加和的初值。

你可能感兴趣的:(编程常用函数及小技巧)