Estructuras_de_Datos/src/cl/cromer/estructuras/code/seleccion/ordenar

13 lines
270 B
Plaintext
Raw Normal View History

2016-06-20 13:25:01 -04:00
public void seleccion() {
2016-07-03 11:28:26 -04:00
for (int i = 0; i < elementos - 1; i++) {
int minimo = i;
for (int j = i + 1; j < elementos; j++) {
if (array[j] < array[minimo]) {
minimo = j;
}
}
int temp = array[i];
array[i] = array[minimo];
array[minimo] = temp;
}
2016-06-20 13:25:01 -04:00
}