Estructuras_de_Datos/src/cl/cromer/estructuras/code/arraySimple/buscar

10 lines
189 B
Plaintext
Raw Normal View History

2016-06-20 13:25:01 -04:00
public int buscar(int valor) {
2016-07-03 11:28:26 -04:00
for (int i = 0; i < array.length; i++) {
if (array[i] != 0 && array[i] == valor) {
// Se encontró
return i;
}
}
// No se encontró
return -1;
2016-06-20 13:25:01 -04:00
}