Question d’entretien chez Intel Corporation

Implement bubble sort

Réponse à la question d'entretien

Utilisateur anonyme

8 août 2012

void Bubble_Sort (my_class *arr, int size) { int i,j; for (i =0; i arr[j+1]) swap (arr[j], arr[j+1]); } }