JAVA實現頁面置換算法(OPT,FIFO,LRU)

public class page_replacement { private int n;//內儲頁框 private int m;//訪問次數 private int F;//沒能直接找到的次數,(F/m)爲缺頁率 private List<Integer>list=null;//訪問地址走向 private Map<Integer,Integer>ma
相關文章
相關標籤/搜索