fix style
This commit is contained in:
parent
4821776ffe
commit
1094451880
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user