给定数组arr [],请在C++中使用STL反转此数组。
例子:
Input: arr[] = {1, 45, 54, 71, 76, 12}
Output: {12, 76, 71, 54, 45, 1}
Input: arr[] = {1, 7, 5, 4, 6, 12}
Output: {12, 6, 4, 5, 7, 1}
方法:可以通过STL中提供的reverse()函数来完成反向操作。
句法:
reverse(start_index, last_index);
// C++ program to reverse Array
// using reverse() in STL
#include
#include
using namespace std;
int main()
{
// Get the array
int arr[] = { 1, 45, 54, 71, 76, 12 };
// Compute the sizes
int n = sizeof(arr) / sizeof(arr[0]);
// Print the array
cout << "Array: ";
for (int i = 0; i < n; i++)
cout << arr[i] << " ";
// Reverse the array
reverse(arr, arr + n);
// Print the reversed array
cout << "\nReversed Array: ";
for (int i = 0; i < n; i++)
cout << arr[i] << " ";
return 0;
}
输出:
Array: 1 45 54 71 76 12
Reversed Array: 12 76 71 54 45 1
想要从精选的最佳视频中学习并解决问题,请查看有关从基础到高级C++的C++基础课程以及有关语言和STL的C++ STL课程。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。