-
Notifications
You must be signed in to change notification settings - Fork 0
/
trirapide_itératif.c
82 lines (66 loc) · 1.93 KB
/
trirapide_itératif.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#include <stdio.h>
// Fonction pour échanger deux éléments dans un tableau
void swap(int *a, int *b) {
int temp = *a;
*a = *b;
*b = temp;
}
// Fonction de partitionnement : place les éléments inférieurs au pivot à gauche et les éléments supérieurs à droite
int partition(int arr[], int low, int high) {
int pivot = arr[high]; // Choisir le dernier élément comme pivot
int i = (low - 1);
for (int j = low; j <= high - 1; j++) {
if (arr[j] <= pivot) {
i++;
swap(&arr[i], &arr[j]);
}
}
swap(&arr[i + 1], &arr[high]);
return (i + 1);
}
// Tri rapide itératif
void quickSortIterative(int arr[], int n) {
int stack[n]; // Créer une pile
int top = -1;
// Pousser les indices de départ et de fin dans la pile
stack[++top] = 0;
stack[++top] = n - 1;
while (top >= 0) {
// Extraire les indices de la pile
int high = stack[top--];
int low = stack[top--];
// Faire le partitionnement
int p = partition(arr, low, high);
// Si la partie gauche existe, ajouter ses indices dans la pile
if (p - 1 > low) {
stack[++top] = low;
stack[++top] = p - 1;
}
// Si la partie droite existe, ajouter ses indices dans la pile
if (p + 1 < high) {
stack[++top] = p + 1;
stack[++top] = high;
}
}
}
// Fonction pour afficher un tableau
void displayArray(int arr[], int size) {
for (int i = 0; i < size; i++) {
printf("%d ", arr[i]);
}
printf("\n");
}
int main() {
int n;
printf("Entrez le nombre d'éléments : ");
scanf("%d", &n);
int arr[n];
printf("Entrez les éléments du tableau :\n");
for (int i = 0; i < n; i++) {
scanf("%d", &arr[i]);
}
quickSortIterative(arr, n);
printf("Tableau trié : ");
displayArray(arr, n);
return 0;
}