liste las funciones rbegin() y rend() en C++ STL

  1. list::rbegin() es una función incorporada en C++ STL que devuelve un iterador inverso que apunta al último elemento de la lista. Sintaxis:
list_name.rbegin()
  1. Parámetro: Esta función no acepta ningún parámetro. Valor devuelto: Devuelve un iterador inverso que apunta al último elemento de la lista. El siguiente programa ilustra la función anterior: 

CPP

// C++ program to illustrate the
// list::rbegin() function
#include <bits/stdc++.h>
using namespace std;
 
int main()
{
 list<int> lis = { 10, 20, 30, 40, 50 };
 
 cout << "The list in reverse order: ";
 
 for (auto it = lis.rbegin(); it != lis.rend(); ++it)
  cout << *it << " ";
 
 return 0;
}
Producción:

The list in reverse order: 50 40 30 20 10

Complejidad de tiempo: O(n)

Espacio Auxiliar: O(1)

  1. list::rend() es una función incorporada en C++ STL que devuelve un iterador inverso que apunta a la posición anterior al comienzo de la lista. Sintaxis:
list_name.rend()
  1. Parámetro: La función no acepta ningún parámetro. Valor devuelto: Devuelve un iterador inverso que apunta a la posición anterior al comienzo de la lista. El siguiente programa ilustra la función anterior: 

CPP

// C++ program to illustrate the
// list::rbegin() function
#include <bits/stdc++.h>
using namespace std;
 
int main()
{
 list<int> lis = { 10, 20, 30, 40, 50 };
 
 cout << "The list in reverse order: ";
 
 for (auto it = lis.rbegin(); it != lis.rend(); ++it)
  cout << *it << " ";
 
 return 0;
}
Producción:

The list in reverse order: 50 40 30 20 10

Complejidad de tiempo: O(n)

Espacio Auxiliar: O(1)

Publicación traducida automáticamente

Artículo escrito por Twinkl Bajaj y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *