fix style

This commit is contained in:
2018-11-19 22:04:13 -03:00
parent 4821776ffe
commit 1094451880

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);