-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselection.php
37 lines (34 loc) · 868 Bytes
/
selection.php
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
<?php
/*
Tri par sélection :
cet algorithme de tri sélectionne chaque élément du tableau un par
un, et le place à sa position correcte dans le tableau trié en comparant
avec les autres éléments.
*/
function tri_selection($tab)
{
for ($i = 0; $i < count($tab); $i++) {
// Recherche de l'élément le plus petit
$min = $i;
for ($j = $i + 1; $j < count($tab); $j++) {
if ($tab[$j] < $tab[$min]) {
$min = $j;
}
}
// Échange des éléments
$tmp = $tab[$i];
$tab[$i] = $tab[$min];
$tab[$min] = $tmp;
}
return $tab;
}
// Exemple d'utilisation
$tab = array(4, 2, 7, 1, 3);
echo "tableau non trié: ";
foreach ($tab as $i)
echo ($i." |");
echo "<br>tableau trié: ";
$tab = tri_selection($tab);
foreach ($tab as $i)
echo ($i." |");
?>