搜索资源列表
fifo
- C++写的操作系统原理及实现,模拟页面置换算法FIFO的源码
页面置换
- 请求页式存储管理方案// 页面淘汰算法采用 FIFO页面淘汰算法,// 并且在淘汰一页时,只将该页在页表中抹去。// 而不再判断它是否被改写过,也不将它写回到辅-request page-storage management programs / / pages out FIFO algorithm out pages algorithm / / in an out, only to the page in the page table to erase. / / Rather than to
页面置换算法的模拟实现和计算命中率
- 基本算法思想 OPT:该算法的基本思想是用二维数组page2[40][2] 的第一列存储装入内存的页面,而第二列用作标记位计数器。每当发生缺页时,就从内存中调出一页,首先将内存中的页面一一与要调入内存中的页面之后的页面比较,如果两个页面不相等,则内存中相应的页面的标记位计数器加一,直至到有相等的页面,则该页面的比较停止,再重复以上操作,直至内存中的页面全部比较完。然后找出内存中页面的标记位最大的页面,而该页就是要置换出来的页。 FIFO: 该算法的基本思想是用队列queue存储内存中的页面,队列
zjf.rar
- 存储管理模拟,编写程序,模拟请求页式存储管理中的硬件地址转换过程,使用三种不同的页面置换算法进行页面替换。分别是先进先出,最佳置换,最近最久未使用页面替换,并计算缺页率。,Storage management simulation, programming, simulation request page storage management hardware address translation process, using three different page replacement
one
- FIFO页面置换算法,用C语言写的,可以缺页率和缺页次数,同时也可以看到内存分配状态!-FIFO page replacement algorithm, written using C language, and can page fault rate and the number of missing pages, but also can see the memory allocation status!
Change
- 用JAVA实现操作系统的页面置换 其中包括 最佳置换算法(Optimal)、先进先出算法(First-in, First-out) 、最近最久不用的页面置换算法(LeastRecently Used Replacement)三种算法的实现-JAVA realization of the operating system with replacement pages including the best replacement algorithm (Optimal), FIFO algorit
qqfy
- 操作系统的页面置换算法,FIFO,LRU-Operating system page replacement algorithm, FIFO, LRU
fifo
- 操作系统调度方法中的先进先出页面置换算法-Operating system scheduling methods FIFO page replacement algorithm
fifo
- 1.用随机数方法产生页面走向,页面走向长度为L(15<=L<=20),L由控制台输入。 2.根据页面走向,分别采用Optinal、FIFO、LRU算法进行页面置换,统计缺页率。 3.假定可用内存块为m(3<=m<=5),m由控制台输入,初始时,作业页面都不在内存。 -1. Using random number methods to generate the page, the page length to L (15 <= L <= 20), L
os
- 操作系统课程设计内存调度LRU,FIFO,OPT算法的页面置换-Curriculum design scheduling operating system memory LRU, FIFO, OPT page replacement algorithm
fifo
- 页面置换算法,利用程序语言实现的 FIFO算法-fifo OS
fifo-opt
- 四种页面置换算法,lru,二次机会,fifo,opt -lru,nur,fifo,opt
os
- 操作系统先进先出页面置换算法,可计算缺页数和缺页率。-OS FIFO page replacement algorithm, calculate the rate of missing pages and missing pages.
zhuangjj
- 页面置换算法 先进先出、最近最久未使用、最佳页面置换算法-FIFO page replacement algorithms, the recent use of the most long-lost, the best page replacement algorithm for
FIFO
- 操作系统中的先进先出(FIFO)页面置换算法的C++源代码-Operating in the FIFO (FIFO) Page Replacement Algorithm for C++ source code
FIFO
- 操作系统WIndows页面置换算法、先进先出算法、以及FIFO和LRU算法(最新最少使用算法)-OS WIndows page replacement algorithm, FIFO algorithm, and FIFO and LRU algorithms (at least using the latest algorithm)
FIFO-LRU-OPT-Clock
- 页面置换算法,FIFO,LRU,OPT,NUR。-Page replacement algorithm
页面置换算法
- OPT LRU FIFO页面置换算法(page switch algorithm)
WJM
- 重庆大学操作系统实验,页面置换算法,LRU,FIFO,CLOCK(page replacement algorithm:LRU,FIFO,CLOCK)
页面置换
- 页面置换算法的实现,FIFO页面置换,OPT页面置换,LRU页面置换(Implementation of page replacement algorithm, FIFO page replacement, OPT page replacement, LRU page replacement)