Which code block uses bubble sort?

Iniciado por pixielott, 15 Septiembre 2020, 16:56 PM

0 Miembros y 1 Visitante están viendo este tema.

pixielott

Hey,
May I know which one is bubble sort from here:

1)
for(int i=0;i<n-1;i++)
  for(int j=n-1; j>i;j--)
    if(a[j] < a[j-1])
        swap(a[j], a[j-1]);


2)
for(int i=0; i<n-1; i++)
  for(int j=i+1; j<n; j++)
    if(a[j] < a[i])
        swap(a[j],a[i]);

3)
int temp, i, j = 0;
    boolean swaped = true;

    while (swaped) {
        swaped = false;
        j++;
        for(i = 0; i < arr.length - j; i++){
            if(arr[i] > arr[i+1]){
                temp = arr[i];
                arr[i] = arr[i+1];
                arr[i+1] = temp;
                swaped = true;
            }
        }
    }


IMO, the first is bubble sort, not sure of the second and third.








MCKSys Argentina

Hi!

The 2nd one is bubble sort.

Cheers!

PS: In case you didn't notice, this is a spanish talking forum. I'm sure you could find any in hindi language.
MCKSys Argentina

"Si piensas que algo está bien sólo porque todo el mundo lo cree, no estás pensando."