📜  std :: C++ STL中的reverse_copy

📅  最后修改于: 2021-05-30 08:14:27             🧑  作者: Mango

C++ STL提供了一个功能,该函数可以复制给定范围内的元素,但顺序相反。下面是一个简单的程序,用于显示reverse_copy()的工作。

例子:

Input : 1 2 3 4 5 6 7 8 9 10
Output : The vector is: 
10 9 8 7 6 5 4 3 2 1

该函数具有三个参数。前两个是要复制元素的范围,第三个参数是要以相反顺序复制元素的起点。

// C++ program to copy from array to vector
// using reverse_copy() in STL.
#include 
using namespace std;
  
int main()
{
    int src[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
    int n = sizeof(src) / sizeof(src[0]);
  
    vector dest(n);
  
    reverse_copy(src, src + n, dest.begin());
  
    cout << "The vector is: \n";
    for (int x : dest) {
        cout << x << " ";
    }
  
    return 0;
}
输出:
The vector is: 
10 9 8 7 6 5 4 3 2 1

以下是矢量到矢量复制的示例。

// C++ program to copy from array to vector
// using reverse_copy() in STL.
#include 
using namespace std;
  
int main()
{
    vector src { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
  
    vector dest(src.size());
  
    reverse_copy(src.begin(), src.end(), dest.begin());
  
    cout << "The vector is: \n";
    for (int x : dest) {
        cout << x << " ";
    }
  
    return 0;
}
输出:
The vector is: 
10 9 8 7 6 5 4 3 2 1
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”