Finish informe #28

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

View File

@ -114,7 +114,7 @@ void bitonicmerge_no2(int low, int n, int dir, int *array) {
void recbitonic(int low, int n, int dir, int *array) {
int k;
if (n > 1){
if (n > 1) {
k = n / 2;
recbitonic(low, k, 1, array);
recbitonic(low + k, k, 0, array);