给定数组arr [],请使用C++中的STL对该数组进行排序。
例子:
Input: arr[] = {1, 45, 54, 71, 76, 12}
Output: {1, 12, 45, 54, 71, 76}
Input: arr[] = {1, 7, 5, 4, 6, 12}
Output: {1, 4, 5, 6, 7, 12}
方法:可以借助STL中提供的sort()函数来完成排序。
句法:
sort(arr, arr + n);
// C++ program to sort Array
// using sort() in STL
#include
using namespace std;
int main()
{
// Get the array
int arr[] = { 1, 45, 54, 71, 76, 12 };
// Find the size of the array
int n = sizeof(arr) / sizeof(arr[0]);
// Print the array
cout << "Array: ";
for (int i = 0; i < n; i++)
cout << arr[i] << " ";
cout << endl;
// Sort the array
sort(arr, arr + n);
// Print the sorted array
cout << "Sorted Array: ";
for (int i = 0; i < n; i++)
cout << arr[i] << " ";
cout << endl;
return 0;
}
输出:
Array: 1 45 54 71 76 12
Sorted Array: 1 12 45 54 71 76
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。