-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfifo.java
61 lines (50 loc) · 1.78 KB
/
fifo.java
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
53
54
55
56
57
58
59
60
61
package PageReplacement;
import java.util.*;
public class fifo {
public static void main(String[] args) {
Scanner myinp = new Scanner(System.in);
int references, frames, hit=0, fault_count=0,count;
System.out.print("Number of Frames: ");
frames = myinp.nextInt();
System.out.print("Number of Reference: ");
references = myinp.nextInt();
int reference_string[] = new int [references];
int page[] = new int[references];
for (int i = 0; i < references; i++) {
System.out.print("Reference String "+i+": ");
reference_string[i] = myinp.nextInt();
}
System.out.print("\n===============================");
for (int i = 0; i < frames; i++) {
page[i] = 9999;
}
for (int i = 0; i < references; i++) {
System.out.println();
hit = 0;
for (int j = 0; j < frames; j++) {
if (page[j] == reference_string[i]) {
hit = 1;
break;
}
}
if (hit == 0) {
for (count = 0; count < frames - 1; count++) {
page[count] = page[count+1];
}
page[count] = reference_string[i];
fault_count++;
for (int j = 0; j < frames; j++) {
if (page[j] != 9999) {
System.out.print(page[j]+"\t");
}
}
} else {
for (int j = 0; j < frames; j++) {
System.out.print("-\t");
}
}
}
System.out.print("\n===============================");
System.out.println("\nFault: "+fault_count);
}
}