-
Notifications
You must be signed in to change notification settings - Fork 0
/
tris.c
46 lines (34 loc) · 1 KB
/
tris.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <time.h>
#include "tris.h"
void triABulles(Appel *appels) {
printf("> Lancement du tri a bulles\n");
clock_t t;
t = clock();
for (int i = 0; i < NBR_APPEL; i++) {
for (int j = 0; j < NBR_APPEL - i - 1; j++) {
if (appels[j].numero > appels[j + 1].numero) {
Appel temp = appels[j];
appels[j] = appels[j + 1];
appels[j + 1] = temp;
}
}
}
printf("> Fin du tri à bulles, temps ecoule : %ld ms\n", clock() - t);
}
void triParInsertion(Appel *appels) {
printf("> Lancement du tri par insertion\n");
clock_t t;
t = clock();
Appel temp;
int j;
for (int i = 1; i < NBR_APPEL; i++) {
temp = appels[i];
j = i - 1;
while (j >= 0 && appels[j].numero > temp.numero) {
appels[j + 1] = appels[j];
j = j - 1;
}
appels[j + 1] = temp;
}
printf("> Fin du tri par insertion, temps ecoule : %ld ms\n", clock() - t);
}