-
Notifications
You must be signed in to change notification settings - Fork 0
/
EXP-1(b)SJF.c
49 lines (40 loc) · 1.2 KB
/
EXP-1(b)SJF.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
#include <stdio.h>
int main() {
int p[20], bt[20], wt[20], tat[20], i, k, n, temp;
float wtavg = 0, tatavg = 0;
printf("Enter the number of processes: ");
scanf("%d", &n);
for (i = 0; i < n; i++) {
p[i] = i;
printf("Enter Burst Time for Process %d: ", i);
scanf("%d", &bt[i]);
}
// Sorting the processes based on burst time using Selection Sort
for (i = 0; i < n; i++) {
for (k = i + 1; k < n; k++) {
if (bt[i] > bt[k]) {
temp = bt[i];
bt[i] = bt[k];
bt[k] = temp;
temp = p[i];
p[i] = p[k];
p[k] = temp;
}
}
}
wt[0] = wtavg = 0;
tat[0] = tatavg = bt[0];
for (i = 1; i < n; i++) {
wt[i] = wt[i - 1] + bt[i - 1];
tat[i] = wt[i] + bt[i];
wtavg += wt[i];
tatavg += tat[i];
}
printf("\nPROCESS\tBURST TIME\tWAITING TIME\tTURNAROUND TIME\n");
for (i = 0; i < n; i++) {
printf("P%d\t\t%d\t\t%d\t\t%d\n", p[i], bt[i], wt[i], tat[i]);
}
printf("\nAverage Waiting Time -- %f", wtavg / n);
printf("\nAverage Turnaround Time -- %f", tatavg / n);
return 0;
}