// **************************************************************************** // Pilote pour tester les trois algorithmes de tri. // **************************************************************************** int main() { srand(time(NULL)); const int TAILLE = 10; int tab[TAILLE]; for (int i = 0; i < 60; i++) { for (int i = 0; i < TAILLE; i++) tab[i] = rand() % TAILLE; switch (i % 3) { case 0 : printf("Bulle : "); triABulle(tab, TAILLE); break; case 1 : printf("Insertion : "); triInsertion(tab, TAILLE); break; case 2 : printf("Sélection : "); triSelection(tab, TAILLE); break; } imprimerTableau(tab, TAILLE); } }
void main() { // chaines pour l'affichage char s1[5] = {'t', 'a', 'b', '(','\0'}; char s1f[3] = {')', '=','\0'}; char s2[11] = {'n', 'o', 'n', ' ', 't', 'r', 'i', 'e', ':', '\n', '\0'}; char s3[7] = {'t', 'r', 'i', 'e', ':', '\n', '\0'}; char s4[8] = {'d', 'a', 'n', 's', ' ', 'i', 'f', '\0'}; char s5[10] = {'d', 'a', 'n', 's', ' ', 'e', 'l', 's', 'e', '\0'}; // tableaux de même taille int tab1[5] = {18, 8, 24, 36, 7}; int tab2[5] = {3, 2, 6, 120, 6}; // petite addition qui prend plus de 10 registres tab2[2] = (1+(2+(3+(4+(5+(6+(7+(8+(9+(10+(11+12))))))))))); // un nombre et 2 pointeurs int nb = 42; int * p1 = &nb; int ** p2 = &p1; // on fait le pgcd sur les 2 tableaux int i; for(i=0; i<5; i=i+1) { tab[i] = pgcd(tab1[i],tab2[i]); print(s1); printi(i); print(s1f); printi(tab[i]); printc('\n'); printc('\n'); } // on affiche les pgcd pas triés print(s2); afficheTABLEAU(); // on trie les pgcd (tri sélection) triSelection(5); // on affiche les pgcd triés print(s3); afficheTABLEAU(); // test avec evaluation paresseuse if(1!=1 && 1==1) { print(s4); } else { print(s5); } printc('\n'); printi(**p2); }