Si te encuentras con algo que no entiendes nos puedes dejar un comentario y te responderemos rápidamente.
Ejemplo 1: pila Java
// construct with non-primative elements only!
Stack<String> stack = new Stack<String>();
// to add a value to the top of the stack:
stack.push("Hello");
// to return and remove a value from the top:
String top = stack.pop();
// to return a value without removing it:
String peek = stack.peek();
Ejemplo 2: pila en java
// Java code for stack implementation
import java.io.*;
import java.util.*;
class Test
// Pushing element on the top of the stack
static void stack_push(Stack<Integer> stack)
for(int i = 0; i < 5; i++)
stack.push(i);
// Popping element from the top of the stack
static void stack_pop(Stack<Integer> stack)
System.out.println("Pop Operation:");
for(int i = 0; i < 5; i++)
Integer y = (Integer) stack.pop();
System.out.println(y);
// Displaying element on the top of the stack
static void stack_peek(Stack<Integer> stack)
Integer element = (Integer) stack.peek();
System.out.println("Element on stack top: " + element);
// Searching element in the stack
static void stack_search(Stack<Integer> stack, int element)
Integer pos = (Integer) stack.search(element);
if(pos == -1)
System.out.println("Element not found");
else
System.out.println("Element is found at position: " + pos);
public static void main (String[] args)
Stack<Integer> stack = new Stack<Integer>();
stack_push(stack);
stack_pop(stack);
stack_push(stack);
stack_peek(stack);
stack_search(stack, 2);
stack_search(stack, 6);
Ejemplo 3: clase de pila en java
import java.util.Stack;
class Main
public static void main(String[] args)
Stack<String> animals= new Stack<>();
// Add elements to Stack
animals.push("Dog");
animals.push("Horse");
// Remove element from Stack
animals.pop();
// Access element from top of Stack
animals.peek();
Ejemplo 4: Aplicación de c ++ en el programa de youtube
Application of c++ in youtube program
Aquí puedes ver las reseñas y valoraciones de los usuarios
Acuérdate de que te brindamos la opción de esclarecer .
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)