Apila el método removeElementAt() en Java con un ejemplo

El método Java.util.Stack.removeElementAt(int index) se utiliza para eliminar un elemento de una pila desde una posición o índice específico. En este proceso, el tamaño de la pila se reduce automáticamente en uno y todos los demás elementos después de que el elemento eliminado se desplaza hacia abajo una posición.

Sintaxis:

Stack.removeElementAt(int index)

Parámetros: este método acepta un índice de parámetro obligatorio de tipo de datos entero que especifica la posición del elemento que se eliminará de la pila.

Valor de retorno: este método tiene un tipo de retorno nulo . Significa que no devuelve nada.

El siguiente programa ilustra el método Java.util.Stack.remove(int index):

Ejemplo 1:

// Java code to illustrate removeElementAt()
  
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");
  
        // Output the Stack
        System.out.println("Stack: " + stack);
  
        // Initial size
        System.out.println("The initial size is: "
                           + stack.size());
  
        // Remove the element at 3rd position
        stack.removeElementAt(2);
  
        // Print the final Stack
        System.out.println("Final Stack: " + stack);
  
        // Final size
        System.out.println("The final size is: "
                           + stack.size());
    }
}
Producción:

Stack: [Geeks, for, Geeks, 10, 20]
The initial size is: 5
Final Stack: [Geeks, for, 10, 20]
The final size is: 4

Ejemplo 2:

// Java code to illustrate removeElement() when position of
// element is passed as parameter
  
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(20);
        stack.add(30);
        stack.add(40);
        stack.add(50);
  
        // Output the Stack
        System.out.println("Stack: " + stack);
  
        // Initial size
        System.out.println("The initial size is: "
                           + stack.size());
  
        // Remove the element at 1st position
        stack.removeElementAt(0);
  
        // Print the final Stack
        System.out.println("Final Stack: " + stack);
  
        // Final size
        System.out.println("The final size is: "
                           + stack.size());
    }
}
Producción:

Stack: [10, 20, 30, 40, 50]
The initial size is: 5
Final Stack: [20, 30, 40, 50]
The final size is: 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 *