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
| #include <stdio.h>
#include <stdlib.h>
void selection(int *t, int n, int *tab_indice)
{
int i, min, j , x, pos;
for(i = 0 ; i < n-1 ; i++)
{
min = i;
for(j = i+1 ; j < n ; j++)
if(t[j] < t[min])
min = j;
if(min != i)
{
x = t[i];
t[i] = t[min];
t[min] = x;
pos=tab_indice[i];
tab_indice[i]=tab_indice[min];
tab_indice[min]=pos;
}
}
}
int main()
{
int k;
int t[6]={3,6,9,10,1,2};
int tab_indice[6]={0; 1, 2, 3, 4, 5};
selection(t,tab_indice, 6);
for(k=0;k<6;k++)
{
printf("%d",t[k], tab_indice[k]);
}
return 0;
} |
Partager