Ma se il Bubblesort degli array è
codice:
for(j=0;j<n-1; j++)
  for(i=0; i<n-1; i++)
    if(vet[i]>vet[i+1])
      {aux=vet[i]; vet[i]=vet[i+1]; vet[i+1]=aux;}
non ho ben capito come si trasformerebbe