Dada una array arr[], ordene esta array en orden descendente usando STL en C++. Ejemplo:
Input: arr[] = {1, 45, 54, 71, 76, 12} Output: {76, 71, 54, 45, 12, 1} Input: arr[] = {1, 7, 5, 4, 6, 12} Output: {12, 7, 6, 5, 4, 1}
Enfoque: la clasificación se puede realizar con la ayuda de la función sort() proporcionada en STL. Sintaxis:
sort(arr, arr + n, greater<T>());
CPP
// C++ program to sort Array // in descending order // using sort() in STL #include <bits/stdc++.h> 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] << " "; // Sort the array in descending order sort(arr, arr + n, greater<int>()); // Print the sorted array cout << "\nDescending Sorted Array:\n"; for (int i = 0; i < n; i++) cout << arr[i] << " "; return 0; }
Producción:
Array: 1 45 54 71 76 12 Descending Sorted Array: 76 71 54 45 12 1
Complejidad de tiempo: O(Nlog(N)) donde N es el tamaño de la array.
Espacio Auxiliar: O(1)