頁面置換算法學習之FIFO,Optimal,LRU

數據定義: typedef struct item { int num; //頁號 int time; //等待時間,LRU算法會用到這個屬性 }Pro; int pageNum; //系統分配給作業的主存中的頁面數 int memoryNum; //可用內存頁面數 int curmemory; //調入內存中的頁面個數 int missNum; //缺頁次數 fl
相關文章
相關標籤/搜索