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

搜索资源列表

  1. 1

    0下载:
  2. 页面置换算法C语言实现! -sas
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-13
    • 文件大小:1827
    • 提供者:wss
  1. chengxu

    0下载:
  2. 操作系统页面置换算法的大概。未完成。希望大家能完成-Operating system is probably the page replacement algorithm. Unfinished
  3. 所属分类:OS Develop

    • 发布日期:2017-04-07
    • 文件大小:55640
    • 提供者:就失去
  1. yemianzhihuan

    0下载:
  2. 操作系统页面置换算法,包含LRU,FIFO等-Operating system page replacement algorithms, including LRU, FIFO, etc.
  3. 所属分类:OS Develop

    • 发布日期:2017-04-02
    • 文件大小:1735
    • 提供者:李丽
  1. daima

    0下载:
  2. 页面置换算法模拟设计,VC++写的(操作系统课程设计)-Page replacement algorithm for analog design, VC++ to write the (operating system, curriculum design)
  3. 所属分类:JavaScript

    • 发布日期:2017-03-29
    • 文件大小:281116
    • 提供者:富哥
  1. LRU

    0下载:
  2. 操作系统内存管理的页面置换算法 LRU 同学做的 已试验过,相当好-os LRU manage
  3. 所属分类:OS Develop

    • 发布日期:2017-04-09
    • 文件大小:1899722
    • 提供者:clover
  1. change

    0下载:
  2. 操作系统中的页面置换算法 包含 opt fifo lru-Operating system contains the page replacement algorithm for opt fifo lru
  3. 所属分类:OS Develop

    • 发布日期:2017-04-01
    • 文件大小:14024
    • 提供者:付炳瑶
  1. vc783453772452

    0下载:
  2. C++代码写的有关页面置换算法的程序 实现OPT 算法 (最优置换算法) 、LRU 算法 (Least Recently) 、 FIFO 算法 (First IN First Out)的模拟-C++ code written on the page replacement algorithm OPT program algorithm (the optimal replacement algorithm), LRU algorithm (Least Recently), FIFO algorit
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-08
    • 文件大小:1912222
    • 提供者:lee
  1. vcyemianzhihuan

    0下载:
  2. 页面置换算法代码,语言采用c++。实现了FIFO算法,LRU算法,其中,LRU采用经典的LRU算法,由于该算法占用资源较大,多数OS采用改进的LRU算法.-Page replacement algorithm code, the language used c++. The realization of the FIFO algorithm, LRU algorithm, which, LRU classical LRU algorithm, the algorithm is occupied
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-24
    • 文件大小:238568
    • 提供者:lee
  1. pagereplace

    0下载:
  2. 操作系统实验 页面置换算法 线程调度-good
  3. 所属分类:OS Develop

    • 发布日期:2017-04-17
    • 文件大小:68052
    • 提供者:yourui
  1. Pagesexchangealgorithm

    0下载:
  2. 操作系统的一般页面置换算法,最近最久未使用算法-The general operating system page replacement algorithm, the most recently used algorithm for long
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-06
    • 文件大小:274877
    • 提供者:韩飞
  1. sun

    0下载:
  2. 请求页式虚存管理是常用的虚拟存储管理方案之一。通过请求页式虚存管理中对页面置换算法的模拟,有助于理解虚拟存储技术的特点,并加深对请求页式虚存管理的页面调度算法的理解。-Page request for virtual memory management is commonly used as one virtual storage management solutions. Page through the request of the management of virtual memory
  3. 所属分类:OS Develop

    • 发布日期:2017-04-06
    • 文件大小:1320
    • 提供者:sun
  1. LRU_FIFO

    0下载:
  2. 操作系统页面置换算法 先进先出等 一些简单的相关算法 -FIFO page replacement algorithm for the operating system such as a simple correlation algorithm
  3. 所属分类:Network Security

    • 发布日期:2017-04-10
    • 文件大小:1427
    • 提供者:yuerlily
  1. os

    0下载:
  2. 实现操作系统中的页面置换算法,显示在界面上,并对其进行比较。-The realization of the operating system page replacement algorithm, displayed in the interface and its comparison.
  3. 所属分类:OS Develop

    • 发布日期:2017-04-06
    • 文件大小:5256
    • 提供者:ymn
  1. PageReplace

    0下载:
  2. 操作系统页面置换算法,重点研究FIFO和LRU-Page Replace Algorithms mainly on LRU and FIFO
  3. 所属分类:OS Develop

    • 发布日期:2017-04-04
    • 文件大小:198092
    • 提供者:window
  1. qiangqiutiaoye

    0下载:
  2. 根据请求调页存储管理方式的相关原理,编程模拟实现一个请求调页存储管理系统,该系统的页面置换算法必须包括先进先出页面淘汰算法(FIFO)、最近最少使用LRU页面淘汰算法和最佳淘汰算法。同时系统可以随意设置当前分配给作业的物理块数。 系统运行时,任意输入一个页面访问序列,设定不同的页面置换算法和物理块数,输出其页面淘汰的情况,计算其缺页次数和页面置换次数。 系统结束后,要求比较同一个页面访问序列,在不同的页面置换算法和物理块数的情况下,其产生的缺页次数和页面置换次数,并分析其原因 -Pa
  3. 所属分类:OS Develop

    • 发布日期:2017-04-01
    • 文件大小:181284
    • 提供者:hlhi
  1. YMZH

    0下载:
  2. 操作系统中所涉及的集中常用页面置换算法,包括最近最少使用、先进先出等.-yemian zhihuan suanfa
  3. 所属分类:Project Design

    • 发布日期:2017-03-29
    • 文件大小:66453
    • 提供者:rencs
  1. daima

    0下载:
  2. 请求分页存储管理系统,系统的页面置换算法必须包括先进先出页面淘汰算法(FIFO)、最近最少使用LRU页面淘汰算法、最佳淘汰算法。-Storage management request paging system, page replacement algorithm must include the page-out algorithm FIFO (FIFO), least recently used LRU algorithm for page-out, the best-out algori
  3. 所属分类:OS Develop

    • 发布日期:2017-04-03
    • 文件大小:1073
    • 提供者:zhouwei
  1. fifo

    0下载:
  2. 页面置换算法,利用程序语言实现的 FIFO算法-fifo OS
  3. 所属分类:OS Develop

    • 发布日期:2017-04-13
    • 文件大小:3317
    • 提供者:yuyang
  1. VCOPT

    0下载:
  2. VC++使用OPT页面置换算法的程序示例,OPT页面置换算法来实现当页表中发现所要访问的页面不在内存时调入内存,使内存的资源得以充分利用。本课题主要的目的是为了在虚拟页式存储管理中,当进程运行时,发生缺页中断时,使用一种很好的页面置换算法,使系统性能变得更好。-VC++ using the OPT page replacement algorithm sample program, OPT page replacement algorithm to achieve when the page t
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-07
    • 文件大小:192484
    • 提供者:361
  1. vcopt

    0下载:
  2. VC++使用OPT页面置换算法的程序示例,OPT页面置换算法来实现当页表中发现所要访问的页面不在内存时调入内存,使内存的资源得以充分利用。本课题主要的目的是为了在虚拟页式存储管理中,当进程运行时,发生缺页中断时,使用一种很好的页面置换算法,使系统性能变得更好。 -VC++ using the OPT page replacement algorithm sample program, OPT page replacement algorithm to achieve when the pag
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:192973
    • 提供者:jiangjihai
« 1 2 ... 4 5 6 7 8 910 11 12 13 14 ... 24 »
搜珍网 www.dssz.com