std::iota
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <numeric> 中定义
|
||
template< class ForwardIterator, class T > void iota( ForwardIterator first, ForwardIterator last, T value ); |
(C++11 起) | |
用上升序列填充 [first, last)
的范围,该序列从 value
开始并使用调用相应 ++value 的值。
与之等价的操作为:
*(d_first) = value; *(d_first+1) = ++value; *(d_first+2) = ++value; *(d_first+3) = ++value; ...
目录 |
[编辑] 参数
first, last | - | 元素的范围总和
|
value | - | 存储的初始值,则表达式+ +值必须很好地形成
原文: initial value to store, the expression ++value must be well-formed |
[编辑] 返回值
(无)
[编辑] 复杂度
究竟
last - first
增量和任务.原文:
Exactly
last - first
increments and assignments.[编辑] 可能的实现
template<class ForwardIterator, class T> void iota(ForwardIterator first, ForwardIterator last, T value) { while(first != last) { *first++ = value; ++value; } } |
[编辑] 示例
以下示例适用于std::random_shuffle一个向量的迭代器到std::liststd::random_shuffle可以被应用到std::list。 std::iota被用于创建矢量.
原文:
The following example applies std::random_shuffle to a vector of iterators to a std::list since std::random_shuffle cannot be applied to an std::list directly. std::iota is used to create the vector.
#include <numeric> #include <algorithm> #include <list> #include <vector> #include <iostream> int main() { std::list<int> l(10); std::iota(l.begin(), l.end(), -4); std::vector<std::list<int>::iterator> v(l.size()); std::iota(v.begin(), v.end(), l.begin()); std::random_shuffle(v.begin(), v.end()); std::cout << "Contents of the list: "; for(auto n: l) { std::cout << n << ' '; } std::cout << '\n'; std::cout << "Contents of the list, shuffled: "; for(auto i: v) { std::cout << *i << ' '; } std::cout << '\n'; }
输出:
Contents of the list: -4 -3 -2 -1 0 1 2 3 4 5 Contents of the list, shuffled: 0 -1 3 4 -4 1 -2 -3 2 5
[编辑] 另请参阅
将一个值赋给一个范围内的元素 (函数模板) | |
将函数的结果保存于一个范围内 (函数模板) |