Skip to content

Page replacement algorithms implemented in c language: FIFO, LRU, Optimal, MFU, LFU, Second chance

Notifications You must be signed in to change notification settings

c-ease/page-replacement-in-c

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Page replacement algorithms implemented in c language: FIFO, LRU, Optimal, MFU, LFU, Second Chance for reference- https://www.geeksforgeeks.org/page-replacement-algorithms-in-operating-systems/

These c programs simulates the page replacement algorithms and must be given input while keeping in mind the following format:

  1. Length of refernce string must be a positive integer must be a positive integer
  2. The reference string should be space-separated positive integers
  3. The number of frames must be a positive integer.