搜索资源列表
ymdd
- 页面调度算法主要有:FIFO,最近最少使用调度算法(LRU),最近最不常用调度算法(LFU),最佳算法(OPT) 题目要求: ① 实现三种算法:1、先进先出;2、OPT;3、LRU ② 页面序列从指定的文本文件(TXT文件)中取出 ③ 输出:第一行:每次淘汰的页面号,第二行:显示缺页的总次数
main
- 操作系统实验(LINUX): 设计一个虚拟存储区和内存工作区,并使用下列算法计算访问命中率. (1) 进先出的算法(FIFO) (2) 最近最少使用的算法(LRU) (3) 最佳淘汰算法(OPT) (4) 最少访问页面算法(LFU) (5) 最近最不经常使用算法(NUR) 命中率=(1-页面失效次数)/页地址流长度
linuxag
- 演示了linux下的常用页面置换算法(FIFO,LRU,OPT,LFU,NUR),并计算了相应的命中率。程序用随机函数产生指令序列,然后变换成相应的页地址流。-demonstration of the commonly used algorithm replacement pages (FIFO, the LRU, OPT, LFU, NUR), and calculated the corresponding hit rate. Procedures used functions to gen
Optimal
- 存储管理中页面置换算法性能测试 要求:设系统采用固定分配局部置换的存储分配策略,编写仿真程序对下述页面 置换算法进行性能测试,并对结果进行分析和比较。 (1) 最佳适应(Optimal)页面置换算法; (2) 先进先出(FIFO)页面置换算法; (3) 最近最久未使用(LRU)页面置换算法; (4) 最少使用(LFU)页面置换算法。 要求可适用于键盘输入和自动产生随机页面走向序列两种数据输入方式。-Memory management page repla
Linux_2_36060302_36060304_36060307_36060323
- 操作系统实验:模拟LINUX操作系统的虚存管理机制,采用多道程序控制方式、多级页表、FIFO请求方式完成对实存辅存的映射管理,处理访存请求。实现了FIFO、LRU、LFU等页表淘汰算法。-Experimental operating system: LINUX operating system simulation of virtual memory management mechanism, the use of multi-channel control mode, multi-level
LFU
- program to implement the least frequently used algorithm in computer networks
FLU
- LRU算法和FIFO OPT LFU算法 -LRU algorithm and the FIFO OPT LFU algorithm
aa
- 页面存储模式LRU,LFU,OPT,NUR-Page storage mode LRU, LFU, OPT, NUR
OS-Page-replacement-algorithm
- 操作系统课程设计报告-页面置换算法模拟系统,模拟了进先出的算法(FIFO),最佳淘汰算法(OPT),最近最久未使用算法(LRU),最少访问页面算法(LFU),并含有DOS界面的菜单选择模块-OS Page replacement algorithm
abc
- 页面置换算法,包括随机生成页面的算法还有FIFO和LFU的算法,其中比较两种算法的缺页中断和缺页中断率。-Page replacement algorithms, including random page generation algorithm and FIFO and LFU algorithm, which compares the two algorithms of the missing pages interruption and missing pages interruptio
nfu
- LRU老化算法 主要实现了一下三个算法模拟:FIFO算法,LRU算法,LFU算法 FIFO:先进先出页置换算法 LRU:最近最久未使用页置换算法 LFU:最不经常使用页置换算法 -The The LRU aging algorithm main achievement of the three algorithms simulation: FIFO algorithm, LRU algorithm, LFU algorithm FIFO: first-in, fir
Page-Scheduling-varellow
- 操作系统页面调度算法仿真,包括FIFO,LRU,OPT,LFU,MFU等-Operating system paging algorithm simulation, including FIFO, LRU, OPT, LFU, MFU, etc.
1
- 操作系统的页面置换实现,算法LFU,用C++语言对该功能的描述与实现。-Realization of the operating system page replacement algorithm for the LFU, and implemented by C++ language describing the function.
suanfa
- 输入页号数 再输入页号序列 选择相应的算法执行(Enter the page number and page number corresponding to the input sequence selection algorithm)