C++ 算法 reverse_copy() 函數用於將 range[first, last) 中的元素複製到以 result 開頭的另一個範圍,使得該範圍內的元素順序相反。
用法
template <class BidirectionalIterator, class OutputIterator>
OutputIterator reverse_copy (BidirectionalIterator first,
BidirectionalIterator last, OutputIterator result);
注意:BidirectionalIterator 是一個迭代器,用於向前和向後訪問容器的任何元素。
參數
first: 一個雙向迭代器,指向元素被反轉的範圍內第一個元素的位置。
last:一個向前迭代器,指向元素被反轉的範圍內最後一個元素的位置。
result:Output 迭代器指向元素被複製到的範圍的初始位置。
返回值
此函數返回一個輸出迭代器,該迭代器指向複製範圍 [first, last) 的末尾,即更改的元素序列被複製的位置。
複雜度
複雜度在 [first, last) 範圍內是線性的: 對每個元素執行賦值。
數據競爭
訪問範圍 [first, last) 中的對象。
結果和返回值之間範圍內的對象被修改。
異常
如果元素賦值或迭代器上的操作引發異常,則此函數將引發異常。
注意:無效的參數會導致未定義的行為。
例子1
讓我們看一個簡單的例子來演示 reverse_copy() 的使用:
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
vector<int> v({1,2,3});
cout << "Before:";
for (const auto& value:v) {
cout << value << " ";
}
cout << '\n';
vector<int> destination(3);
reverse_copy(begin(v), end(v), begin(destination));
cout << "After: ";
for (const auto& value:destination) {
cout <<value << " ";
}
cout << '\n';
return 0;
}
輸出:
Before:1 2 3 After: 3 2 1
例子2
讓我們看另一個簡單的例子來反轉字符串:
#include <algorithm>
#include <iostream>
#include <string>
#include <iterator>
using namespace std;
int main() {
string str = "Hello Myself Nikita";
cout<<"Before Reverse:"<< str<< endl;
cout<<"After Reverse:";
reverse_copy(str.begin(), str.end(),
ostream_iterator<char>(cout, ""));
return 0;
}
輸出:
Before Reverse:Hello Myself Nikita After Reverse:atikiN flesyM olleH
例子3
讓我們看另一個簡單的例子來反轉數字範圍:
#include <vector>
#include <algorithm>
#include <iostream>
int main( ) {
using namespace std;
vector <int> v1, v2( 10 );
vector <int>::iterator Iter1, Iter2;
int i;
for ( i = 0 ; i <= 9 ; i++ )
{
v1.push_back( i );
}
cout << "The original vector v1 is:\n ( " ;
for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
cout << *Iter1 << " ";
cout << ")." << endl;
// Reverse the elements in the vector
reverse_copy (v1.begin( ), v1.end( ), v2.begin( ) );
cout << "The copy v2 of the reversed vector v1 is:\n ( " ;
for ( Iter2 = v2.begin( ) ; Iter2 != v2.end( ) ; Iter2++ )
cout << *Iter2 << " ";
cout << ")." << endl;
cout << "The original vector v1 remains unmodified as:\n ( " ;
for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
cout << *Iter1 << " ";
cout << ")." << endl;
return 0;
}
輸出:
The original vector v1 is: ( 0 1 2 3 4 5 6 7 8 9 ). The copy v2 of the reversed vector v1 is: ( 9 8 7 6 5 4 3 2 1 0 ). The original vector v1 remains unmodified as: ( 0 1 2 3 4 5 6 7 8 9 ).
示例 4
讓我們看另一個簡單的例子:
#include <iostream>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <iterator>
using namespace std;
void print(string a[], int N)
{
for(int i = 0; i < N; i++)
{
cout << (i + 1) << ". " << setw(5)
<< a[i] << " ";
}
cout << endl;
}
int main()
{
string s[] = {"George", "John", "Nikki", "Alice", "Bob", "Watson"};
string t[6];
cout << "Original order:";
print(s, 6);
cout << "\nReversing the order ... " << endl;
// Doesn't modify original array s[]
reverse_copy(s, s + 6, t);
cout << "Reversed order:";
print(t, 6);
return 0;
}
輸出:
Original order:1. George 2. John 3. Nikki 4. Alice 5. Bob 6. Watson Reversing the order ... Reversed order:1. Watson 2. Bob 3. Alice 4. Nikki 5. John 6. George
相關用法
- C++ Algorithm reverse()用法及代碼示例
- C++ Algorithm remove_if()用法及代碼示例
- C++ Algorithm remove()用法及代碼示例
- C++ Algorithm remove_copy_if()用法及代碼示例
- C++ Algorithm replace()用法及代碼示例
- C++ Algorithm replace_copy()用法及代碼示例
- C++ Algorithm replace_copy_if()用法及代碼示例
- C++ Algorithm remove_copy()用法及代碼示例
- C++ Algorithm replace_if()用法及代碼示例
- C++ Algorithm random_shuffle()用法及代碼示例
- C++ Algorithm rotate()用法及代碼示例
- C++ Algorithm rotate_copy()用法及代碼示例
- C++ Algorithm max_element()用法及代碼示例
- C++ Algorithm set_union()用法及代碼示例
- C++ Algorithm next_permutation()用法及代碼示例
- C++ Algorithm upper_bound()用法及代碼示例
- C++ Algorithm minmax()用法及代碼示例
- C++ Algorithm pop_heap()用法及代碼示例
- C++ Algorithm set_intersection()用法及代碼示例
- C++ Algorithm lower_bound()用法及代碼示例
注:本文由純淨天空篩選整理自 C++ Algorithm reverse_copy()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。