CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 页面置换算法

搜索资源列表

  1. 先进先出页面算法程序

    0下载:
  2. 分别实现最佳置换算法(optimal)、先进先出(FIFO)页面置换算法和最近最久未使用(LRU)置换算法,并给出各算法缺页次数和缺页率。-respectively optimal replacement algorithm (optimal), FIFO (FIFO) page replacement algorithm and the most recent time on the use (LRU) replacement algorithm, the algorithm is given
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:3242
    • 提供者:asdf
  1. 页面置换

    0下载:
  2. 页面置换算法的演示程序及代码,包含FIFO、LRU、OPT算法-pages replacement algorithm code and demo program, including FIFO, the LRU, OPT algorithm
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:8996
    • 提供者:陶杰
  1. 模拟页面置换算法

    0下载:
  2. 通过编写和调试存储管理的模拟程序以加深对存储管理方案的理解。熟悉虚存管理的各种页面淘汰算法。-through writing and debugging of storage management simulation program to increase the storage management program understanding. Virtual Memory Management familiar with the pages out algorithm.
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:4178
    • 提供者:
  1. 页面置换算法三种)

    1下载:
  2. 掌握内存管理的页面淘汰算法 输入可用内存页面数和一个作业访问逻辑页号的序列,分别给存FIFO、LRU算法的缺页中断率(注:算法原理实现,不要求实际页面)。-master memory management algorithm pages out of the importation of a few pages available memory and a logic operation visit pages of the sequence, kept FIFO, the LRU algori
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:6706
    • 提供者:施委
  1. 页面置换算法(C语言编写)

    0下载:
  2. c语言实现的页面调度算法,用三种算法实现调度1.先进先出2.OPT3.LRU 2.页面序列从指定的文本文件(TXT文件)中取出3.输出:第一行:每次淘汰的页面号 第二行:显示缺页的总次数(上机已经运行通过!!)-pages scheduling algorithm, a three-Scheduling Algorithm 1. FIFO 2.OPT3.LRU 2. Pages from the designated sequence of text files (TXT) out of thr
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:1823
    • 提供者:zbing0203
  1. 页面置换

    0下载:
  2. 请求页式存储管理方案// 页面淘汰算法采用 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
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1549
    • 提供者:王生
  1. 页面置换算法的模拟实现和计算命中率

    0下载:
  2. 基本算法思想 OPT:该算法的基本思想是用二维数组page2[40][2] 的第一列存储装入内存的页面,而第二列用作标记位计数器。每当发生缺页时,就从内存中调出一页,首先将内存中的页面一一与要调入内存中的页面之后的页面比较,如果两个页面不相等,则内存中相应的页面的标记位计数器加一,直至到有相等的页面,则该页面的比较停止,再重复以上操作,直至内存中的页面全部比较完。然后找出内存中页面的标记位最大的页面,而该页就是要置换出来的页。 FIFO: 该算法的基本思想是用队列queue存储内存中的页面,队列
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:26423
    • 提供者:何泽荣
  1. zjf.rar

    0下载:
  2. 存储管理模拟,编写程序,模拟请求页式存储管理中的硬件地址转换过程,使用三种不同的页面置换算法进行页面替换。分别是先进先出,最佳置换,最近最久未使用页面替换,并计算缺页率。,Storage management simulation, programming, simulation request page storage management hardware address translation process, using three different page replacement
  3. 所属分类:操作系统开发

    • 发布日期:2017-03-29
    • 文件大小:379678
    • 提供者:飓风
  1. demostration_of_os

    0下载:
  2. os重要算法演示: 页面置换算法――最佳置换算法 页面置换算法――最近最久未使用(LRU)算法 并发进程和具有挂起状态的进程状态图 进程调度算法及银行家算法示例 进程的同步与互斥--信号量-demostration of os
  3. 所属分类:OS Develop

    • 发布日期:2017-03-27
    • 文件大小:814050
    • 提供者:titer
  1. fifo

    0下载:
  2. 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
  3. 所属分类:OS Develop

    • 发布日期:2017-03-31
    • 文件大小:2316
    • 提供者:周哲
  1. 59564363OSshiyan5

    0下载:
  2. 操作系统页面置换算法,此压缩包内有四种算法,可供读者参考-Page replacement algorithm for the operating system, this package there are four types of compression algorithms, for the reader is referred to
  3. 所属分类:Other systems

    • 发布日期:2017-04-17
    • 文件大小:10802
    • 提供者:liuxiaomei
  1. os

    0下载:
  2. 操作系统课程设计内存调度LRU,FIFO,OPT算法的页面置换-Curriculum design scheduling operating system memory LRU, FIFO, OPT page replacement algorithm
  3. 所属分类:OS Develop

    • 发布日期:2017-03-28
    • 文件大小:50076
    • 提供者:immortal
  1. PageExchange

    0下载:
  2. 操作系统实验、页面置换算法、java swing-Operating System Experiment, page replacement algorithms, java swing
  3. 所属分类:Java Develop

    • 发布日期:2017-04-16
    • 文件大小:9932
    • 提供者:忘了
  1. zhihuanew

    0下载:
  2. 页面置换算法实验,模拟操作系统的页面置换 。-Page replacement algorithm experiment, simulation of the operating system page replacement.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-24
    • 文件大小:176131
    • 提供者:李真
  1. LRU

    0下载:
  2. 用高级语言模拟页面置换算法LRU,加深对LRU算法的认识。 其基本原理为: 如果某一个页面被访问了,它很可能还要被访问;相反,如果它长时间不被访问,在最近未来的时间里是不大可能被访问的。(Using high-level language simulation page replacement algorithm LRU, deepen the understanding of the LRU algorithm. The basic principle is: If a page is
  3. 所属分类:操作系统开发

    • 发布日期:2017-12-18
    • 文件大小:1024
    • 提供者:寒修末
  1. Fi

    0下载:
  2. 模拟操作系统中页面置换算法,可进行FIFO ,LRU,OPT等算法。(Simulated operating system page replacement algorithm, which can be FIFO, LRU, OPT and other algorithms.)
  3. 所属分类:Windows编程

    • 发布日期:2017-12-20
    • 文件大小:40960
    • 提供者:666。6
  1. 内存分配换页

    0下载:
  2. 操作系统中的内存分配管理,有fifo算法,lruu算法,以及两者比较(Memory allocation management in the operating system, there are FIFO algorithm, lruu algorithm, and the two comparisons)
  3. 所属分类:其他

    • 发布日期:2017-12-25
    • 文件大小:2048
    • 提供者:蚊子酱
  1. FIFO

    0下载:
  2. 提供的是页面置换算法中最简单的先进先出策略的java代码实现(The Java code implementation of the simplest FIFO policy in the page replacement algorithm is provided)
  3. 所属分类:Windows编程

    • 发布日期:2017-12-31
    • 文件大小:1024
    • 提供者:Bruce Shen
  1. WJM

    0下载:
  2. 重庆大学操作系统实验,页面置换算法,LRU,FIFO,CLOCK(page replacement algorithm:LRU,FIFO,CLOCK)
  3. 所属分类:操作系统开发

    • 发布日期:2018-01-10
    • 文件大小:199680
    • 提供者:wjmm
  1. 操作系统

    0下载:
  2. 置换算法,先进先出,在地址映射过程中,若在页面中发现所要访问的页面不在内存中,则产生缺页中断。当发生缺页中断时,如果操作系统内存中没有空闲页面,则操作系统必须在内存选择一个页面将其移出内存,以便为即将调入的页面让出空间。而用来选择淘汰哪一页的规则叫做页面置换算法。(In the process of address mapping, if page is found in the page, it is not in memory, resulting in page break. When t
  3. 所属分类:其他

    • 发布日期:2018-05-01
    • 文件大小:5120
    • 提供者:流浪者一样
« 1 2 34 5 6 7 8 9 10 ... 24 »
搜珍网 www.dssz.com