std::rotate_copy
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <algorithm> 中定义
|
||
template< class ForwardIt, class OutputIt > OutputIt rotate_copy( ForwardIt first, ForwardIt n_first, |
||
的元素复制的范围内
[first, last)
d_first
开始到另一个范围在这样一种方式,该元素n_first
成为新的范围的第一个元素,并n_first - 1
成为最后一个元素. 原文:
Copies the elements from the range
[first, last)
, to another range beginning at d_first
in such a way, that the element n_first
becomes the first element of the new range and n_first - 1
becomes the last element. 目录 |
[编辑] 参数
first, last | - | 元素的范围内,要复制的复本
|
n_first | - | 元素移动到新的范围的开始
原文: the element to move to the beginning of the new range |
d_first | - | 开始的目标范围内
|
类型要求 | ||
-ForwardIt 必须满足 ForwardIterator 的要求。
| ||
-OutputIt 必须满足 OutputIterator 的要求。
|
[编辑] 返回值
输出迭代器复制过去的最后一个元素的元素
原文:
Output iterator to the element past the last element copied.
[编辑] 可能的实现
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 复杂度
线性
first
和last
之间的距离原文:
linear in the distance between
first
and last
[编辑] 另请参阅
将区间内的元素旋转 (函数模板) |