搜索资源列表
nru
- 置换算法最近最不经常使用(NRU)算法通过对页面、页表、地址转换和页面置换过程的模拟,加深对请求调页系统的原理和实现过程的理解。-Replacement algorithm is the least frequently used recently (NRU) algorithm through the pages, page tables, address translation and page replacement process simulation, to deepen the re
page1
- 请求调页算法的演示,在DOS下,可由用户输入页面的请求顺序来产生结果-Request a demonstration of paging algorithms, in DOS, the page requested by the user input in order to produce results
OS
- 里面包括了动态分区分配方式的模拟程序、模拟动态优先权进程调度程序、请求调页存储管理方式的模拟程序、编辑距离算法程序、最长子序列的算法!-Which includes a dynamic partition allocation simulation program to simulate the dynamic priority process scheduler, to request paging storage management simulation program, edit dis
MemoryManagement
- java 模拟CPU系统调页,每个页面可存放10条指令,分配给一个作业的内存块为4。模拟一个作业的执行过程,该作业有320条指令,即它的地址空间为32页,采用FIFO、LRU算法,并计算缺页率-java simulation CPU system paging, each page can hold 10 instructions, the job is assigned to a memory block 4. Simulated execution of a job, the job has
MemoryManagement
- 内存管野:请求调页处理方式,采用LRU和FIFO两种算法-Memory management field: demand paging approach, using two algorithms LRU and FIFO
FIFO
- 1.登录的账号:yangmingyuan 登录的密码:123456 2.物理块数由用户自己输入大小可以随意选定。 3. 在输入请求的页面时候,请依次输入页面号并且页面号之间要用空格隔开,最后不要有空格等其他非数字字符结束。 4.然后单击输入按钮将页面号输入,弹出确定的对话框单击确定,最后单 击开始FIFO按钮开始执行调页算法。在调页过程框中观察具体的调页顺序及调页过程,并且可以观察到缺页数和缺页率的大小。 5.最后单击退出按钮退出该系统。-1. Log in Usern
FIFO先进先出调度算法(含代码截图)
- 最简单的分页替换算法就是先进先出算法,当每次有新的分页需要调入时,会选择调入内存时间最久的分页换出。有两种实现的方法:第一种是记录每个分页被调入到页框的时间,当每次需要换出分页时,会找到调入时间最早的一页,也就是在主存储器中存在最久的分页。另外一种方式就是利用FIFO队列来实现,当要进行分页替换时,就把队列最前端的分页换出,再把要调入的分页放到队列的末端。(The simplest paging replacement algorithm is the first in first out al