 |
Implementation of LRU Page Replacement Algorithm using C++ | Lab Programs for Students of Anna Unive
//LRU Page Replacement Algorithm #include #include #include #include #define max 100 class lrupage { private: int frame[10], count[10], cstr[max]; int tot,nof,fault; public: lrupage(){fault=0;} void getdata(); void push ...
labprograms.wordpress.com |
 |