#include #include void measure(int action, int size); int* randomTab(int size); int getSize(); void menu(int size); void printTab(int* t, int n); void triSelection(int* t, int n); void triInsertion(int* t, int n); void triBulle(int* t, int n); void triFusion(int* t, int debut, int fin); void fusionner(int* t, int debut, int milieu, int fin); void triRapide(int* t, int debut, int fin); int partitionner(int* t, int debut, int fin); int main() { srand(time(NULL)); int size = 50000; int action; do { menu(size); int res = 0; do { res = scanf("%d",&action); char ch; while ((ch = getchar()) != '\n' && ch != EOF); } while (res<1); switch (action) { case 1: size = getSize(); break; case 2: case 3: case 4: case 5: case 6: measure(action, size); break; default: printf("Veuillez retaper 0...6\n"); } } while (action>0); printf ("Merci et au revoir.\n"); return 0; } void measure(int action, int size) { clock_t debut, fin; int i; int* t = randomTab(size); // printTab(t,size); debut=clock(); switch (action) { case 2: printf("Debut tri Selection...\n"); triSelection(t,size); break; case 3: printf("Debut tri Insertion...\n"); triInsertion(t,size); break; case 4: printf("Debut tri Bulle...\n"); triBulle(t,size); break; case 5: printf("Debut tri Fusion...\n"); triFusion(t,0,size-1); break; case 6: printf("Debut tri Rapide...\n"); triRapide(t,0,size-1); break;; } fin=clock(); // printTab(t,size); float difference = (float)(fin-debut)/(float)CLOCKS_PER_SEC; printf("Duree : %f secondes\n", difference); free(t); } void printTab(int* t, int n) { int i; for (i=0;i0 && t[j]t[i+1]) { int tmp = t[i]; t[i] = t[i+1]; t[i+1] = tmp; desordre = 1; } } } void triFusion(int* t, int debut, int fin) { if (debut < fin) { int mid = (debut + fin)/2; triFusion(t, debut, mid); triFusion(t, mid+1, fin); fusionner(t,debut,mid,fin); } } void fusionner(int* t, int debut, int milieu, int fin) { int* tmp = (int*)malloc((fin-debut+1)*sizeof(int)); int i = 0; int i1 = debut; int i2 = milieu+1; while (i1<=milieu && i2<=fin) { if (t[i1]=pivot) j--; if (ipivot) i--; t[debut] = t[i]; t[i] = pivot; return i; } int* randomTab(int size) { printf("Creation d'un tableau de %d cases...\n", size); int* t = (int*)malloc(size*sizeof(int)); int i; for (i=0;i