c++ stl 数值算法 计算两数字的内积inner_product

在这里插入图片描述

使用例子:

template<typename T>
inline void INSERT_ELEMENTS(T& coll, int first, int last)
{
	for (int i = first; i <= last; ++i)
	{
		coll.insert(coll.end(), i);
	}
}
template<typename T>
inline void PRINT_ELEMENTS(const T & coll, const string& optcstr = "")
{
	cout << optcstr;
	for (auto elem : coll)
	{
		cout << elem << ' ';
	}
	cout << endl;
}
int main()
{
	list<int>a;
	INSERT_ELEMENTS(a, 1, 6);
	PRINT_ELEMENTS(a, "a: ");
	cout << "inner product:" << inner_product(a.cbegin(), a.cend(), a.cbegin(), 0) << endl;
}

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_44800780/article/details/104194862