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

4 lines
77 B
Plaintext
Raw Normal View History

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