El deque::rbegin() es una función incorporada en C++ STL que devuelve un iterador inverso que apunta al último elemento del deque (es decir, su comienzo inverso). Sintaxis:
deque_name.rbegin()
Parámetro: Esta función no acepta ningún parámetro. Valor devuelto: Devuelve un iterador inverso que apunta al último elemento de la deque. Los siguientes programas ilustran la función anterior: Programa 1:
CPP
// C++ program to illustrate the // deque::rbegin() function #include <bits/stdc++.h> using namespace std; int main() { deque<int> dq = { 10, 20, 30, 40, 50 }; cout << "The deque in reverse order: "; // prints the elements in reverse order for (auto it = dq.rbegin(); it != dq.rend(); ++it) cout << *it << " "; return 0; }
Producción:
The deque in reverse order: 50 40 30 20 10
Complejidad de tiempo: O(n)
Espacio Auxiliar: O(n)
Programa 2:
CPP
// C++ program to illustrate the // deque::rbegin() function #include <bits/stdc++.h> using namespace std; int main() { deque<char> dq = { 'a', 'b', 'c', 'd', 'e' }; cout << "The deque in reverse order: "; // prints the elements in reverse order for (auto it = dq.rbegin(); it != dq.rend(); ++it) cout << *it << " "; return 0; }
Producción:
The deque in reverse order: e d c b a
Complejidad de tiempo: O(n)
Espacio Auxiliar: O(n)
Publicación traducida automáticamente
Artículo escrito por rupesh_rao y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA