给定一个向量,使用C++中的STL查找该向量的元素之和。
例子:
Input: vec = {1, 45, 54, 71, 76, 12}
Output: 259
Input: vec = {1, 7, 5, 4, 6, 12}
Output: 35
方法:可以在STL中提供的accumulate()函数的帮助下找到总和。
句法:
accumulate(first_index, last_index, initial value of sum);
// C++ program to find the sum
// of Array using accumulate() in STL
#include
using namespace std;
int main()
{
// Get the vector
vector a = { 1, 45, 54, 71, 76, 12 };
// Print the vector
cout << "Vector: ";
for (int i = 0; i < a.size(); i++)
cout << a[i] << " ";
cout << endl;
// Find the sum of the vector
cout << "\nSum = "
<< accumulate(a.begin(), a.end(), 0);
return 0;
}
输出:
Vector: 1 45 54 71 76 12
Sum = 259
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。