Dada una Lista , la tarea es eliminar el último elemento de esta Lista en C++.
Ejemplos:
Input: list = [10 20 30 70 80 90 100 40 50 60] Output: 10 20 30 40 50 60 70 80 90 Input: list = [1 2 3 4 5] Output: 1 2 3 4
Las listas son un tipo de contenedores asociativos en los que cada elemento tiene que ser único porque el valor del elemento lo identifica. El valor del elemento no se puede modificar una vez que se agrega a la lista, aunque es posible eliminar y agregar el valor modificado de ese elemento.
El último elemento de la Lista se puede eliminar pasando su iterador .
Sintaxis:
iterator erase (const_iterator positionOfElementToBeDeleted);
Enfoque: se puede eliminar fácilmente el último elemento pasando su iterador a la función de borrado. Para llegar al iterador que apunta al último elemento, hay dos formas:
- Método 1:
prev(listInt.end())
A continuación se muestra la implementación del enfoque anterior:
Programa 1:
// C++ program to delete last element
// of a List by passing its iterator
#include <iostream>
#include <list>
using
namespace
std;
// Function to print the list
void
printList(list<
int
> mylist)
{
// Get the iterator
list<
int
>::iterator it;
// printing all the elements of the list
for
(it = mylist.begin(); it != mylist.end(); ++it)
cout <<
' '
<< *it;
cout <<
'\n'
;
}
// Function to delete last element of list
// using method 1
void
deleteByMethod1(list<
int
> mylist)
{
// printing all the elements of the list
cout <<
"\nList originally: "
;
printList(mylist);
// Get the iterator
list<
int
>::iterator it;
// Get the positionOfElementToBeDeleted
// using method 1
it = prev(mylist.end());
// Erase the last element
// currently pointed by the iterator
mylist.erase(it);
// printing all the elements of the list
cout <<
"List after deletion: "
;
printList(mylist);
}
// Driver code
int
main()
{
list<
int
> mylist;
// Get the list
for
(
int
i = 1; i < 10; i++)
mylist.push_back(i * 10);
// Method 1 to get positionOfElementToBeDeleted
deleteByMethod1(mylist);
return
0;
}
Producción:List originally: 10 20 30 40 50 60 70 80 90 List after deletion: 10 20 30 40 50 60 70 80
- Método 2:
list::iterator it = listInt.end(); --it;
A continuación se muestra la implementación del enfoque anterior:
Programa 2:
// C++ program to delete last element
// of a List by passing its iterator
#include <iostream>
#include <list>
using
namespace
std;
// Function to print the list
void
printList(list<
int
> mylist)
{
// Get the iterator
list<
int
>::iterator it;
// printing all the elements of the list
for
(it = mylist.begin(); it != mylist.end(); ++it)
cout <<
' '
<< *it;
cout <<
'\n'
;
}
// Function to delete last element of list
// using method 2
void
deleteByMethod2(list<
int
> mylist)
{
// printing all the elements of the list
cout <<
"\nList originally: "
;
printList(mylist);
// Get the iterator
list<
int
>::iterator it;
// Get the positionOfElementToBeDeleted
// using method 2
it = --mylist.end();
// Erase the last element
// currently pointed by the iterator
mylist.erase(it);
// printing all the elements of the list
cout <<
"List after deletion: "
;
printList(mylist);
}
// Driver code
int
main()
{
list<
int
> mylist;
// Get the list
for
(
int
i = 1; i < 10; i++)
mylist.push_back(i * 10);
// Method 2 to get positionOfElementToBeDeleted
deleteByMethod2(mylist);
return
0;
}
Producción:List originally: 10 20 30 40 50 60 70 80 90 List after deletion: 10 20 30 40 50 60 70 80