跳转至

方便的函数

std::iota

iota 函数用于产生连续的值。该函数得名自 APL 语言,其中用来产生从 1 开始的连续数值。

#include <numeric>
vector<int> arr(10);
iota(pa.begin(), pa.end(), 0);
// 0 1 2 3 4 5 6 7 8 9