Stack indexOf() método en Java con ejemplo

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"));
    }
}
Producción:

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));
    }
}
Producción:

Stack: [1, 2, 3, 10, 20]
The first occurrence of Geeks is at index:1
The first occurrence of 10 is at index: 4

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 *