Finish informe #28

Merged
cromer merged 18 commits from informe into master 2018-11-22 23:55:29 -03:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 89cd51e84c - Show all commits

View File

@ -353,8 +353,8 @@ int main (int argc, char **argv) {
// O((1/2) * n^2 - (1/2) * n)
if (counting) {
start_sort("Count sort corriendo... ", n);
count_sort(work_array, n);
start_sort("Counting sort corriendo... ", n);
counting_sort(work_array, n);
end_sort();
}

View File

@ -129,7 +129,7 @@ int main(int argc, char **argv) {
memcpy(test_array, test_case, sizeof(int) * n);
fprintf(stdout, "\tcounting sort: ");
fflush(stdout);
count_sort(test_array, n);
counting_sort(test_array, n);
for (i = 0; i < n; i++) {
if (test_array[i] != qarray[i]) {
fprintf(stdout, "fail\n");