std::reverse_copy
来自cppreference.com
![]() |
该页由英文版维基使用谷歌翻译机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击此处。 |
定义于头文件 <algorithm>
|
||
template< class BidirIt, class OutputIt > OutputIt reverse_copy( BidirIt first, BidirIt last, OutputIt d_first ); |
||
范围从
[first, last)
元素,到另一个范围内以这样的方式开始于d_first
,新的范围中的元素是在相反的顺序. 目录 |
[编辑] 参数
first, last | - | |
d_first | - | |
类型要求 | ||
-BidirIt 必须满足 BidirectionalIterator 的要求。
| ||
-OutputIt 必须满足 OutputIterator 的要求。
|
[编辑] 返回值
输出迭代器复制过去的最后一个元素的元素
[编辑] 可能的实现
template<class BidirIt, class OutputIt> OutputIt reverse_copy(BidirIt first, BidirIt last, OutputIt d_first) { while (first != last) { *(d_first++) = *(--last); } return d_first; } |
[编辑] 示例
运行此代码
#include <vector> #include <iostream> #include <algorithm> int main() { std::vector<int> v({1,2,3}); for (const auto& value : v) { std::cout << value << " "; } std::cout << '\n'; std::vector<int> destination(3); std::reverse_copy(std::begin(v), std::end(v), std::begin(destination)); for (const auto& value : destination) { std::cout << value << " "; } std::cout << '\n'; }
输出:
1 2 3 3 2 1
[编辑] 复杂度
线性
first
和last
之间的距离[编辑] 另请参阅
将区间内的元素颠倒顺序 (函数模板) |