Estructuras_de_Datos/src/cl/cromer/estructuras/code/pila/peek

4 lines
83 B
Plaintext
Raw Normal View History

2016-06-20 13:25:01 -04:00
public int peek() {
// Devolver el valor encima
return this.pila[encima];
}