Add bubble sort #8

Merged
cromer merged 16 commits from bubblesort into master 2018-11-11 19:17:20 -03:00
1 changed files with 1 additions and 0 deletions
Showing only changes of commit 6ab7930b24 - Show all commits

View File

@ -192,6 +192,7 @@ int main (int argc, char **argv) {
}
else if (algoritmo == 2) {
fprintf(stdout, "Bubble sort corriendo...\n");
fflush(stdout);
start_timer();
bubble_sort(array, n);
stop_timer();