std::iota是 C++ 标准库中的一个算法,位于<numeric>头文件中。它的作用是用一个连续的范围内的递增序列填充容器。 函数签名如下: template< class ForwardIt, class T > void iota( ForwardIt first, ForwardIt last, T value ); 其中: first是要填充的范围的起始迭代器。 last是要填充的范围的末尾迭代器(...