Apila el método lastIndexOf(Object, int) en Java con un ejemplo

El método Java.util.Stack.lastIndexOf(Object element, int last_index) se usa para el último índice de la primera aparición del elemento especificado en esta pila, buscando hacia adelante desde el último índice, o devuelve -1 si no se encuentra el elemento . Más formalmente, devuelve el último índice más bajo i tal que (i >= último índice && Objects.equals(o, get(i))), o -1 si no existe tal último índice.

Sintaxis:

public int lastIndexOf(Object element, 
                        int last_index)

Parámetros: Este método acepta dos parámetros:

  • elemento del tipo de Stack. Especifica el elemento cuya ocurrencia se necesita verificar en la pila.
  • último índice del tipo Integer. Especifica el último índice desde el que empezar a buscar

Valor devuelto: este método devuelve el último índice o posición de la primera aparición del elemento en la pila desde el último índice especificado. De lo contrario, devuelve -1 si el elemento no está presente en la pila. El valor devuelto es de tipo entero.

Excepción: este método arroja una excepción IndexOutOfBoundsException si el índice especificado es mayor o igual que el tamaño actual de este vector

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("Geeks");
  
        // Displaying the Stack
        System.out.println("Stack: " + stack);
  
        // The first position of an element
        // is returned
        System.out.println("The first occurrence"
                           + " of Geeks is at last index:"
                           + stack.indexOf("Geeks"));
  
        // Get the last occurrence of Geeks
        // using lastIndexOf() method
        System.out.println("The last occurrence"
                           + " of Geeks is at last index: "
                           + stack
                                 .lastIndexOf("Geeks",
                                              stack.lastIndexOf("Geeks")));
    }
}
Producción:

Stack: [Geeks, for, Geeks, 10, Geeks]
The first occurrence of Geeks is at last index:0
The last occurrence of Geeks is at last index: 4

Programa 2: Para demostrar IndexOutOfBoundsException

// 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(1);
        stack.add(2);
        stack.add(3);
        stack.add(10);
        stack.add(20);
  
        // Displaying the Stack
        System.out.println("Stack: " + stack);
  
        // Get the 10th occurrence of Geeks
        // using lastIndexOf() method
        System.out.println("The 10th occurrence"
                           + " of Geeks is at index: ");
  
        try {
            stack.lastIndexOf("Geeks", 10);
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}
Producción:

Stack: [1, 2, 3, 10, 20]
The 10th occurrence of Geeks is at index: 
java.lang.IndexOutOfBoundsException: 10 >= 5

Publicación traducida automáticamente

Artículo escrito por Code_r 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 *