El método Java.util.Stack.lastIndexOf(Object element) se usa para verificar y encontrar la ocurrencia de un elemento particular en la pila. Si el elemento está presente en la pila, el método lastIndexOf() devuelve el índice de la última aparición del elemento; de lo contrario, devuelve -1. Este método se utiliza para encontrar la última aparición de un elemento en particular en una pila.
Sintaxis:
Stack.lastIndexOf(Object element)
Parámetros: El elemento de parámetro es de tipo Pila. Se refiere al elemento cuya última ocurrencia se requiere verificar.
Valor devuelto: el método devuelve la posición de la última aparición del elemento en la pila. Si el elemento no está presente en la pila, el método devuelve -1. El valor devuelto es de tipo entero.
Los siguientes programas ilustran el método Java.util.Stack.lastIndexOf():
Programa 1:
// Java code to illustrate lastIndexOf() import java.util.*; public class StackDemo { public static void main(String args[]) { // Creating an empty Stack Stack<String> stack = new Stack<String>(); // Use add() method to add elements in the Stack stack.add("Geeks"); stack.add("for"); stack.add("Geeks"); stack.add("10"); stack.add("20"); // Displaying the Stack System.out.println("Stack: " + stack); // The last position of an element is returned System.out.println("Last occurrence of Geeks is at index: " + stack.lastIndexOf("Geeks")); System.out.println("Last occurrence of 10 is at index: " + stack.lastIndexOf("10")); } }
Stack: [Geeks, for, Geeks, 10, 20] Last occurrence of Geeks is at index: 2 Last occurrence of 10 is at index: 3
Programa 2:
// Java code to illustrate lastIndexOf() import java.util.*; public class StackDemo { public static void main(String args[]) { // Creating an empty Stack Stack<Integer> stack = new Stack<Integer>(); // Use add() method to add elements in the Stack stack.add(10); stack.add(22); stack.add(3); stack.add(10); stack.add(20); // Displaying the Stack System.out.println("Stack: " + stack); // The last position of an element is returned System.out.println("Last occurrence of 10 is at index: " + stack.lastIndexOf(10)); System.out.println("Last occurrence of 20 is at index: " + stack.lastIndexOf(20)); } }
Stack: [10, 22, 3, 10, 20] Last occurrence of 10 is at index: 3 Last occurrence of 20 is at index: 4