在C++中,我们可以使用accumulate()和multiplies <>()快速找到数组乘积。
initialProduct指定要考虑的初始值。
对于乘法,初始值为1。
例如:array = [5,10,15],
因此,乘积= 1 x 5 x 10 x 15 = 750(注意1是此处的初始值)
CPP
// C++ program to find array product
#include
#include
using namespace std;
// User defined function that returns product of
// arr[] using accumulate() library function.
int arrayProduct(int a[], int n)
{
int initialProduct = 1;
return accumulate(a, a + n, initialProduct, multiplies());
}
int main()
{
int a[] = { 5, 10, 15 };
int n = sizeof(a) / sizeof(a[0]);
cout << arrayProduct(a, n);
return 0;
}
CPP
// C++ program to find vector product
#include
#include
#include
using namespace std;
// User defined function that returns product of
// v using accumulate() library function.
int arrayProduct(vector& v)
{
int initialProduct = 1;
return accumulate(v.begin(), v.end(), initialProduct, multiplies());
}
int main()
{
vector v{ 5, 10, 15 };
cout << arrayProduct(v);
return 0;
}
输出:
750
向量的乘积
CPP
// C++ program to find vector product
#include
#include
#include
using namespace std;
// User defined function that returns product of
// v using accumulate() library function.
int arrayProduct(vector& v)
{
int initialProduct = 1;
return accumulate(v.begin(), v.end(), initialProduct, multiplies());
}
int main()
{
vector v{ 5, 10, 15 };
cout << arrayProduct(v);
return 0;
}
输出:
750
我们还可以使用自定义函数进行累加。在C++ STL中引用数字标头|设置1(accumulate()和partial_product())以获取详细信息。
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。