搜索资源列表

  1. abe

    0下载:
  2. fifo及lru页面置换算法-fifo and LRU algorithm replacement pages
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-11
    • 文件大小:1024
    • 提供者:李存勇
  1. 页面置换算法222

    0下载:
  2. 页面置换算法的LRU和FCFS。自己写的。-replacement pages of LRU algorithm and FCFS. Wrote it myself.
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-11
    • 文件大小:1024
    • 提供者:姚东
  1. 请求调页存储管理系统-vc6.0

    0下载:
  2. 用VC++6.0模拟实现最佳置换算法、最近最久未使用算法、先进先出置换算法。-VC 6.0 Simulation best replacement algorithm, the most recent time on the use of algorithms, FIFO replacement algorithm.
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-11
    • 文件大小:36864
    • 提供者:刘印亮
  1. gjb-page

    0下载:
  2. 程序功能主要分为3个部分,分别是对OPT、FIFO、LRU三种页面置换算法的实现。要求3部分的设计应该尽可能使用近似的实现方法。-procedures main function is divided into three parts, namely the OPT, FIFO, three pages replacement LRU algorithm implementation. Part of the three require
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-11
    • 文件大小:10240
    • 提供者:gjb
  1. ymzh

    0下载:
  2. 这是一个页面置换算法的实现,功能描述:输入可用内存页面数和一个作业访问逻辑页号的序列 *给出FIFO、LRU、OPT算法的缺页中断率 *本程序中设初始页框里的页号与实际页号都不同-This is a page replacement algorithm to achieve functional descr iption : Importation of a few pages available memory and a logic
  3. 所属分类:磁盘编程

    • 发布日期:2024-05-11
    • 文件大小:3072
    • 提供者:齐大永
  1. OS实验一

    0下载:
  2. 模拟实现三种页面置换算法:OPT,LRU,FIFO。-Simulation three pages replacement algorithm : OPT, LRU, FIFO.
  3. 所属分类:C#编程

    • 发布日期:2024-05-11
    • 文件大小:53248
    • 提供者:白马
  1. 页面置换算法的模拟实现和计算命中率

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

    • 发布日期:2024-05-11
    • 文件大小:26624
    • 提供者:何泽荣
  1. linuxag

    0下载:
  2. 演示了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. Pr
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-11
    • 文件大小:2048
    • 提供者:衣明玉
  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 alg
  3. 所属分类:C#编程

    • 发布日期:2024-05-11
    • 文件大小:3072
    • 提供者:asdf
  1. 页面置换

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

    • 发布日期:2024-05-11
    • 文件大小:1666048
    • 提供者:陶杰
  1. fifo_lru_opt

    0下载:
  2. 操作系统课程设计,页面置换算法,包含了先进先出fifo、最近最久未使用lru、还有最佳opt三种算法。代码简单易懂,编译通过。-courses on operating system design, page replacement algorithms, including the FIFO fifo. the most recent time on the use of LRU, the three best opt algorit
  3. 所属分类:Windows编程

    • 发布日期:2024-05-11
    • 文件大小:1024
    • 提供者:wz
  1. FIFOandLRUarithmetic

    0下载:
  2. 最佳页面置换算法,FIFO,LRU的仿真。页面调用和置换过程有动态显示。内存分配页面数目和页面引用串的长度可以进行人工交互输入。 -best pages replacement algorithm, FIFO, the LRU simulation. Page calls and replacement process is dynamic display. Memory allocation of the number of p
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-11
    • 文件大小:238592
    • 提供者:刘利辉
  1. Pages_Replace

    0下载:
  2. 本人编写的一个操作系统-页面置换算法演示程序。里面有代码和可执行程序-I prepared an operating system-page replacement algorithm Demonstration Program. There are code and executables
  3. 所属分类:其他小程序

    • 发布日期:2024-05-11
    • 文件大小:45056
    • 提供者:杨杰
  1. FCFS_LRU_OPT

    0下载:
  2. 模拟操作系统的页面置换1、 掌握操作系统的页面置换过程,加深理解页式虚拟存储器的实现原理。 2、 掌握用随机数生成满足一定条件的指令地址流的方法。 3、 掌握页面置换的模拟方法。 -simulation systems of a replacement pages, master pages operating system replacement process deepen our understanding of vi
  3. 所属分类:系统编程

    • 发布日期:2024-05-11
    • 文件大小:13312
    • 提供者:Solo
  1. clock-algorithm

    0下载:
  2. 本代码为页面置换算法中的NRU算法,即改进型Clock置换算法。-code for the page replacement algorithm the invariable algorithm, improved Clock replacement algorithm.
  3. 所属分类:Windows编程

    • 发布日期:2024-05-11
    • 文件大小:2048
    • 提供者:代怀凯
  1. lsbok.txt

    0下载:
  2. 数字水印图片信息隐藏在载体图片的最低有效位lsb,直接替换,该方法简单易操作,鲁棒性很差,经不起加噪,滤波,剪贴等攻击-digital watermarking Photo vector information hidden in the lowest effective photo-lsb direct replacement, The method is simple and easy to operate, robust poor
  3. 所属分类:图形图象

    • 发布日期:2024-05-11
    • 文件大小:243712
    • 提供者:chenxiang
  1. new

    0下载:
  2. 页面置换算法模拟的简单实现,及相关过程.-page replacement algorithm simulation of a simple realization, and the related process.
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-11
    • 文件大小:1024
    • 提供者:
  1. FIFO_LRU

    0下载:
  2. 操作系统中的页面置换算法 ,用Vc6.0写的 近乎完美-Operating system page replacement algorithm, with near-perfect written Vc6.0
  3. 所属分类:系统编程

    • 发布日期:2024-05-11
    • 文件大小:11264
    • 提供者:huihui
  1. Page-replacement-algorithm

    0下载:
  2. 页面置换算法,在FIFO,LRU,OPT算法中比较 各算法的优劣-Page replacement algorithm, FIFO, LRU, OPT algorithm comparing the advantages and disadvantages of each method
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-11
    • 文件大小:43008
    • 提供者:李明博
  1. Page-replacement-algorithm

    0下载:
  2. 分别实现最佳置换算法(optimal)、先进先出(FIFO)页面置换算法和最近最久未使用(LRU)置换算法,并给出各算法缺页次数和缺页率。 -Respectively, to achieve optimal replacement algorithm (optimal), First In First Out (FIFO) page replacement algorithm and the most-recently-used r
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-11
    • 文件大小:84992
    • 提供者:唐艰苦
« 12 3 4 5 6 7 8 9 10 ... 50 »

源码中国 www.ymcn.org