Dado un vector, invierte este vector usando STL en C++.
Ejemplo:
Input: vec = {1, 45, 54, 71, 76, 12} Output: {12, 76, 71, 54, 45, 1} Input: vec = {1, 7, 5, 4, 6, 12} Output: {12, 6, 4, 5, 7, 1}
Enfoque: la inversión se puede realizar con la ayuda de la función reverse() proporcionada en STL. La complejidad de tiempo de reverse() es O(n) donde n es la longitud de la string.
Sintaxis:
reverse(start_index, last_index);
CPP
// C++ program to reverse Vector // using reverse() in STL #include <bits/stdc++.h> using namespace std; int main() { // Get the vector vector<int> a = { 1, 45, 54, 71, 76, 12 }; // Print the vector cout << "Vector: "; for (int i = 0; i < a.size(); i++) cout << a[i] << " "; cout << endl; // Reverse the vector reverse(a.begin(), a.end()); // Print the reversed vector cout << "Reversed Vector: "; for (int i = 0; i < a.size(); i++) cout << a[i] << " "; cout << endl; return 0; }
Producción:
Vector: 1 45 54 71 76 12 Reversed Vector: 12 76 71 54 45 1
Complejidad de tiempo: O(n) donde n es la longitud de la string.