El método Java.util.Stack.indexOf(Object element) se usa para verificar y encontrar la ocurrencia de un elemento particular en la pila. Si el elemento está presente, se devuelve el índice de la primera aparición del elemento; de lo contrario, se devuelve -1 si la pila no contiene el elemento.
Sintaxis:
Stack.indexOf(Object element)
Parámetros: Este método acepta un elemento de parámetro obligatorio del tipo de Pila. Especifica el elemento cuya ocurrencia se necesita verificar en la pila.
Valor devuelto: este método devuelve el índice o la posición de la primera aparición del elemento en la pila. De lo contrario, devuelve -1 si el elemento no está presente en la pila. El valor devuelto es de tipo entero.
Los siguientes programas ilustran el método Java.util.Stack.indexOf():
Programa 1:
// Java code to illustrate indexOf() 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 first position of an element // is returned System.out.println("The first occurrence" + " of Geeks is at index:" + stack.indexOf("Geeks")); System.out.println("The first occurrence" + " of 10 is at index: " + stack.indexOf("10")); } }
Stack: [Geeks, for, Geeks, 10, 20] The first occurrence of Geeks is at index:0 The first occurrence of 10 is at index: 3
Programa 2:
// Java code to illustrate indexOf() 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); // The first position of an element // is returned System.out.println("The first occurrence" + " of Geeks is at index:" + stack.indexOf(2)); System.out.println("The first occurrence" + " of 10 is at index: " + stack.indexOf(20)); } }
Stack: [1, 2, 3, 10, 20] The first occurrence of Geeks is at index:1 The first occurrence of 10 is at index: 4