搜索资源列表
change
- 模式操作系统的页面置换算法,主要实现FIFO算法,LRU算法等
memory_fromm_hgy
- 操作系统常用页面置换算法模拟实验 FIFO,LRU
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
页面存储管理
- 该代码是根据先来先服务、最佳置换算法、最近最少使用算法来完成的。
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
LRU_hash_table
- LRU算法的C++实现类。封装得不错,建议采用。-LRU algorithm for C++ implementation class.
wynczh
- 内存页面置换 用C语言模拟LINUX操作系统中的内存页式管理的FIFO算法和LRU算法-Memory page replacement using C language simulation of LINUX operating system management of memory pages the FIFO algorithm and LRU algorithm
fifolrusuijitaotai
- 课题三 设计一个虚拟存储区和内存工作区,编程序演示下述置换算法的具体实现过程,并计算访问命中率: 要求从主界面选择某算法,且以下算法都要实现 1、先进先出算法(FIFO) 2、最近最久未使用算法(LRU) 3、随机淘汰算法-fifo,lru
FLU
- LRU算法和FIFO OPT LFU算法 -LRU algorithm and the FIFO OPT LFU algorithm
LRU
- LRU算法源代码示列,使用C++语言编写,可供学习,研究使用-LRU Code
OSPro3
- os实验:页式存储管理。 OPT算法、FIFO算法、LRU算法,及命中率计算-os experiment: page storage management. OPT algorithm, the FIFO algorithm, the LRU algorithm, and the hit rate calculation
LRU-FIFO
- linux关于进程间页面置换算法包括FIFO、LRU算法-Linux interprocess page replacement algorithm to include FIFO, the LRU algorithm
调页算法
- 大学操作系统课程中的虚拟内存管理,调页算法模拟,共有三种算法FIFO、LRU、OPT(Paging algorithm for virtual storage management in operating system)
存储管理实验
- 操作系统的存储管理实验,里面有FIFO算法和LRU算法,还有CLOCK核心算法(The storage management experiments of the operating system include the FIFO algorithm and the LRU algorithm, and the CLOCK core algorithm.)
suanfa
- 输入页号数 再输入页号序列 选择相应的算法执行(Enter the page number and page number corresponding to the input sequence selection algorithm)
存储管理
- 设计一个虚拟存储区和内存工作区,并使用下列算法计算访问命中率。 1.先进先出的算法(FIFO) 2. 最近最少使用的算法(LRU) 3.最佳淘汰算法(OPT)