accumulate
对顺序表元素顺序累计求和
// 其中start指向首元素,end指向尾元素的下一个位置,因此要累计求和的元素范围是[start, end]
accumulate(start, end, initialValue);
//operator是一个函数,它规定了累计过程中的操作
accumulate(start, end, initialValue, operator)
利用accumulate实现求和操作
template<class
accumulate
对顺序表元素顺序累计求和
// 其中start指向首元素,end指向尾元素的下一个位置,因此要累计求和的元素范围是[start, end]
accumulate(start, end, initialValue);
//operator是一个函数,它规定了累计过程中的操作
accumulate(start, end, initialValue, operator)
利用accumulate实现求和操作
template<class