📜  C++库-

📅  最后修改于: 2020-12-15 04:25:56             🧑  作者: Mango


介绍

它用于一般化的数值运算,并且此标头描述了一组对数值序列执行某些运算的算法。在C++中,它包括常见的数学函数和类型,以及优化的数字数组和对随机数生成的支持。

功能

Sr.No. Function & description
1 accumulate

It is used accumulate values in range.

2 adjacent_difference

It is used to compute adjacent difference of range.

3 inner_product

It is used to compute cumulative inner product of range.

4 partial_sum

It is used to compute partial sums of range.

5 iota

It is used to store increasing sequence.