-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFirstComeFirstServe.java
More file actions
52 lines (43 loc) · 1.6 KB
/
FirstComeFirstServe.java
File metadata and controls
52 lines (43 loc) · 1.6 KB
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
class FirstComeFirstServe{
void findWaitingTime(int processes[], int n,
int bt[], int wt[]) {
wt[0] = 0;
for (int i = 1; i < n; i++) {
wt[i] = bt[i - 1] + wt[i - 1];
}
}
void findTurnAroundTime(int processes[], int n,
int bt[], int wt[], int tat[]) {
for (int i = 0; i < n; i++) {
tat[i] = bt[i] + wt[i];
}
}
void findavgTime(int processes[], int n, int bt[]) {
int wt[] = new int[n], tat[] = new int[n];
int total_wt = 0, total_tat = 0;
findWaitingTime(processes, n, bt, wt);
findTurnAroundTime(processes, n, bt, wt, tat);
System.out.printf("P Bt Wt"
+" TAT \n");
for (int i = 0; i < n; i++) {
total_wt = total_wt + wt[i];
total_tat = total_tat + tat[i];
System.out.printf(" %d ", (i + 1));
System.out.printf(" %d ", bt[i]);
System.out.printf(" %d", wt[i]);
System.out.printf(" %d\n", tat[i]);
}
float s = (float)total_wt /(float) n;
int t = total_tat / n;
System.out.printf("Avg wt = %f", s);
System.out.printf("\n");
System.out.printf("Avg turn around time = %d ", t);
}
public static void main(String[] args){
FirstComeFirstServe ob = new FirstComeFirstServe();
int processes[] = {1, 2, 3};
int n = processes.length;
int burst_time[] = {4, 20, 1};
ob.findavgTime(processes, n, burst_time);
}
}