如何在 C++ 中使用 STL 反转一个矢量?


本教程将讨论一个示例程序,让你了解如何在 C++ 中使用 STL 反转一个矢量。

要反转给定的矢量,我们将使用 C++ 中 STL 库中提供的 reverse() 函数。

示例

 实时演示

#include <bits/stdc++.h>
using namespace std;
int main(){
   //collecting the vector
   vector<int> a = { 1, 45, 54, 71, 76, 12 };
   cout << "Vector: ";
   for (int i = 0; i < a.size(); i++)
      cout << a[i] << " ";
   cout << endl;
   //reversing the vector
   reverse(a.begin(), a.end());
   cout << "Reversed Vector: ";
   for (int i = 0; i < a.size(); i++)
      cout << a[i] << " ";
   cout << endl;
   return 0;
}

输出

Vector: 1 45 54 71 76 12
Reversed Vector: 12 76 71 54 45 1

更新于:2020 年 3 月 2 日

459 次浏览

开启你的职业生涯

完成课程获得认证

开始
广告