c++ stl 数值算法 将相对值转换成绝对值partial_sum使用方法

在这里插入图片描述

使用例子:

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()
{
	vector<int>a;
	INSERT_ELEMENTS(a, 1, 6);
	PRINT_ELEMENTS(a);
	partial_sum(a.cbegin(), a.cend(), ostream_iterator<int>(cout, " "));
	cout << endl;
	partial_sum(a.cbegin(), a.cend(), ostream_iterator<int>(cout, " "),multiplies<int>());
	cout << endl;
}

在这里插入图片描述

猜你喜欢

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