-
Notifications
You must be signed in to change notification settings - Fork 0
/
page_opt.c
118 lines (118 loc) · 1.55 KB
/
page_opt.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#include<stdio.h>
#include<stdlib.h>
#include<unistd.h>
#include<time.h>
int main()
{
srand(time(NULL));
int a[15];
for(int i=0;i<15;i++)
{
a[i]=1+rand()%5;
}
printf("Reference string is-\n");
for(int i=0;i<15;i++)
{
printf("%d ",a[i]);
}
printf("\n");
int b[3];
for(int i=0;i<3;i++)
{
b[i]=0;
}
int cnt=0;
int t[3];
for(int i=0;i<15;i++)
{
int f=0,g=0,ind;
for(int j=0;j<3;j++)
{
if(b[j]==0)
{
g=1;
ind=j;
break;
}
}
if(g==1) //empty page available
{
for(int j=0;j<3;j++)
{
if(b[j]==a[i])
{
f=1;
}
}
if(f==0)
{
b[ind]=a[i];
for(int j=0;j<3;j++)
{
printf("%d ",b[j]);
}printf("\n");
sleep(1);
cnt++;
}
}
else //all pages filled
{
for(int j=0;j<3;j++)
{
if(b[j]==a[i])
{
f=1;
}
}
if(f==0) //f=1 means page already exists else page replacement
{
cnt++;
for(int j=0;j<3;j++)
{
t[j]=100;
}
for(int j=i+1;j<15;j++)
{
if(a[j]==b[0])
{
t[0]=j;
break;
}
}
for(int j=i+1;j<15;j++)
{
if(a[j]==b[1])
{
t[1]=j;
break;
}
}
for(int j=i+1;j<15;j++)
{
if(a[j]==b[2])
{
t[2]=j;
break;
}
}
int index,max=t[0];
for(int j=0;j<3;j++)
{
if(t[j]>=max)
{
max=t[j];
index=j;
}
}
b[index]=a[i];
}
for(int j=0;j<3;j++)
{
printf("%d ",b[j]);
}printf("\n");
sleep(1);
}
}
printf("Number of page faults occured - %d\n",cnt);
return 0;
}