El método Java.util.LinkedList.removeLast() se utiliza para eliminar el último elemento de LinkedList. Este método también devuelve el elemento después de eliminarlo.
Sintaxis:
LinkedList.removeLast()
Parámetros: Esta función no toma ningún parámetro.
Valor devuelto: el método devuelve el último elemento o el elemento presente al final de la lista.
El siguiente programa ilustra el método Java.util.LinkedList.removeLast():
Java
// Java code to illustrate removeLast() import java.io.*; import java.util.LinkedList; public class LinkedListDemo { public static void main(String args[]) { // Creating an empty LinkedList LinkedList<String> list = new LinkedList<String>(); // Use add() method to add elements in the list list.add("Geeks"); list.add("for"); list.add("Geeks"); list.add("10"); list.add("20"); // Displaying the list System.out.println("LinkedList:" + list); // Remove the tail using removeLast() System.out.println("The last element is removed: " + list.removeLast()); // Displaying the final list System.out.println("Final LinkedList:" + list); // Remove the tail using removeLast() System.out.println("The last element is removed: " + list.removeLast()); // Displaying the final list System.out.println("Final LinkedList:" + list); } }
Producción:
LinkedList:[Geeks, for, Geeks, 10, 20] The last element is removed: 20 Final LinkedList:[Geeks, for, Geeks, 10] The last element is removed: 10 Final LinkedList:[Geeks, for, Geeks]
Complejidad temporal de removeLast() : O(1)
Publicación traducida automáticamente
Artículo escrito por Chinmoy Lenka y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA