Algorithme FIFO et SJF

Fermé
monchar69 Messages postés 5 Date d'inscription mercredi 18 juin 2008 Statut Membre Dernière intervention 26 novembre 2008 - 26 nov. 2008 à 11:46
 douja - 16 mars 2015 à 20:57
Bonjour,
je suis a la recherche d'un algorithme FIFO et SJF dynamiques.
S.V.P aidez moi, j'en ai besoin pour resoudre un exercice.
mille merci.

4 réponses

void main()
{
char p[10][5],temp[5];
int tot=0,wt[10],pt[10],i,j,n,temp1;
float avg=0;
clrscr();
printf("enter no of processes:");
scanf("%d",&n);
for(i=0;i<n;i++)
{
printf("enter process%d name:\n",i+1);
scanf("%s",&p[i]);
printf("enter process time");
scanf("%d",&pt[i]);
}
for(i=0;i<n-1;i++)
{
for(j=i+1;jpt[j])
{
temp1=pt[i];
pt[i]=pt[j];
pt[j]=temp1;
strcpy(temp,p[i]);
strcpy(p[i],p[j]);
strcpy(p[j],temp);
}
}
}
wt[0]=0;
for(i=1;i<n;i++)
{
wt[i]=wt[i-1]+et[i-1];
tot=tot+wt[i];
}
avg=(float)tot/n;
printf("p_name\t P_time\t w_time\n");
for(i=0;i<n;i++)
printf("%s\t%d\t%d\n",p[i],et[i],wt[i]);
printf("total waiting time=%d\n avg waiting time=%f",tot,avg);
getch();
}
6
c'est pour FIFO ?
0