Este commit está contenido en:
Chris Cromer 2018-11-19 22:04:13 -03:00
padre 4821776ffe
commit 1094451880
Firmado por: cromer
ID de clave GPG: 39CC813FF3C8708A
Se han modificado 1 ficheros con 1 adiciones y 1 borrados

Ver fichero

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