cleanup files

This commit is contained in:
2018-11-17 13:35:31 -03:00
parent 429ef47a78
commit 18fc551db3
8 changed files with 149 additions and 132 deletions

View File

@@ -16,8 +16,4 @@
#ifndef _SORT_BITONIC
#define _SORT_BITONIC
void bitonic_sort(int *array, int n);
void compare(int i, int j, int dir, int *array);
void bitonicmerge(int low, int c, int dir, int *array);
void recbitonic(int low, int c, int dir, int *array);
void sort(int *array, int n);
#endif
#endif

View File

@@ -16,6 +16,4 @@
#ifndef _SORT_MERGE
#define _SORT_MERGE
void merge_sort(int *array, int n);
void merge_sort_run(int *array, int *temp, int left, int right);
void merge(int *array, int *temp, int prev_left, int prev_middle, int right);
#endif