bubble sort que es
for (int i = 0; i < N; i++){
for (int j = 0; j < N - 1; j++){
if (conjunto[j] > conjunto[j + 1]){
tmp = conjunto[j];
conjunto[j] = conjunto[j + 1];
conjunto[j + 1] = tmp;
}
}
}