Created
May 13, 2020 13:38
-
-
Save projjal1/3dd6090878bde533c9f0413caa78d96c to your computer and use it in GitHub Desktop.
FIFO Page Replacement Algorithm Implementation in C
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
void fifo(int string[20],int n,int size) | |
{ | |
//Creating array for block storage | |
int frames[n]; | |
//Initializing each block with -1 | |
for (int i=0;i<n;i++) | |
frames[i]=-1; | |
//Index to insert element | |
int index=-1; | |
//Counters | |
int page_miss=0; | |
int page_hits=0; | |
//Traversing each symbol in fifo | |
for (int i=0;i<size;i++) | |
{ | |
int symbol=string[i]; | |
int flag=0; | |
for(int j=0;j<n;j++) | |
{ | |
if (symbol==frames[j]) | |
{ | |
flag=1; | |
break; | |
} | |
} | |
if (flag==1) | |
{ | |
printf("\nSymbol: %d Frame: ",symbol); | |
for (int j=0;j<n;j++) | |
printf("%d ",frames[j]); | |
page_hits+=1; | |
} | |
else | |
{ | |
index=(index+1)%n; | |
frames[index]=symbol; | |
page_miss+=1; | |
printf("\nSymbol: %d Frame: ",symbol); | |
for (int j=0;j<n;j++) | |
printf("%d ",frames[j]); | |
} | |
} | |
printf("\nPage hits: %d",page_hits); | |
printf("\nPage misses: %d",page_miss); | |
} | |
//Main function | |
int main(void) | |
{ | |
int string[]={7,0,1,2,0,3,0,4,2,3,0,3,2,1,2,0,1,7,0,1}; | |
int no_frames=3; | |
int size=sizeof(string)/sizeof(int); | |
fifo(string,no_frames,size); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment