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

搜索资源列表

  1. 页面置换算法

    0下载:
  2. 页面置换算法 用于页面置换方面的算法,对于计算机算法的研究对初学者很有帮助-The arithmetic of page replacement,arithmetic used to the replacement,it is useful for the beginer of computer arithmetic.
  3. 所属分类:Windows编程

    • 发布日期:2013-08-07
    • 文件大小:1704
    • 提供者:zz
  1. LRU页面置换算法模拟 CNBIE

    0下载:
  2. LRU页面置换算法模拟,LRU置换算法虽然是一种比较好的算法,但要求系统有较多的支持硬件。为了了解一个进程在内存中的各个页面各有多少时间未被进程访问,以及如何快速地知道哪一页是最近最久未使用的页面.-LRU algorithm simulation replacement pages, the LRU algorithm replacement is a better algorithm, but requires a system with more hardware support. In
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:11592
    • 提供者:22
  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. WIN页面置换

    0下载:
  2. 用VC开发的模拟操作系统的页面置换-VC simulation of the operating system developed by the replacement pages
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:52198
    • 提供者:科竞
  1. 页面置换算法fiof_lru

    0下载:
  2. fifo和lru页面置换算法-fifo and LRU algorithm replacement pages
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:7008
    • 提供者:夏雨
  1. 页面置换算法222

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

    • 发布日期:2008-10-13
    • 文件大小:1401
    • 提供者:姚东
  1. 页面置换算法(FIFO和LRU)

    0下载:
  2. 模拟操作系统虚拟存储中的页面置换算法采用FIFO算法和LRU算法-simulation operating system virtual memory pages the algorithm used FIFO replacement algorithm and LRU algorithm
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:6834
    • 提供者:杨鼎新
  1. 存储管理--页面置换

    0下载:
  2. 关于模拟操作系统的存储管理页面置换程序,挺好的.-simulation operating system on the storage management pages replacement procedures, Holbrook.
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:1732
    • 提供者:若竹
  1. 置换FIFO

    0下载:
  2. 页面置换算法
  3. 所属分类:系统编程

    • 发布日期:2008-11-10
    • 文件大小:4384
    • 提供者:diuhuo
  1. 操作系统页面置换算法模拟

    2下载:
  2. 一个操作系统页面置换算法模拟程序源代码希望能够帮到你 。。。
  3. 所属分类:其它

    • 发布日期:2009-05-08
    • 文件大小:1939104
    • 提供者:zhong1w2
  1. 操作系统页面置换算法

    0下载:
  2. 操作系统实验中的页面置换算法的准确实现
  3. 所属分类:源码下载

  1. 操作系统中改进型clock页面置换算法的演示算法

    0下载:
  2. 操作系统中改进型clock页面置换算法的演示算法,Improved version of the operating system clock page replacement algorithm demonstration algorithm
  3. 所属分类:操作系统开发

    • 发布日期:2016-12-23
    • 文件大小:1157
    • 提供者:周岩
  1. 简单实现操作系统的一些页面置换与分页内存管理等

    0下载:
  2. 简单实现操作系统的一些页面置换与分页内存管理等-Simple implementation of the operating system some of the pages paged memory management, replacement and
  3. 所属分类:Windows编程

    • 发布日期:2012-11-12
    • 文件大小:881
    • 提供者:xavier
  1. one

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

    • 发布日期:2017-03-29
    • 文件大小:1038
    • 提供者:刘蒙
  1. Change

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

    • 发布日期:2017-03-28
    • 文件大小:21284
    • 提供者:王晓
  1. OperatingSystemPageReplacementAlgorithm

    1下载:
  2. Java操作系统页面置换算法: (1)进先出的算法(FIFO) (2)最近最少使用的算法(LRU) (3)最佳淘汰算法(OPT) (4)最少访问页面算法(LFU) (注:由本人改成改进型Clock算法) (5)最近最不经常使用算法(NUR) -Java operating system, page replacement algorithm: (1) into the first out method (FIFO) (2) least recently used algo
  3. 所属分类:Java Develop

    • 发布日期:2017-03-26
    • 文件大小:342650
    • 提供者:李锐歆
  1. 模拟页面置换算法Clock

    3下载:
  2. 采用CLOCK置换算法仿真请求分页系统 1、设计目的:用高级语言编写和调试一个内存分配程序,加深对内存分配算法的理解。 2、设计要求: 1) 实现请求分页存储管理方式的页面置换算法:CLOCK算法 2) 内存物理块数固定为15个,对多个作业采用可变分配全局置换的策略分配物理块 3) 作业数量与作业大小(10-20页)可在界面进行设置 4) 所有作业按RR算法进行调度,时间片长度为1秒 5) 可为每个作业随机产生引用的页面串,也可以人工输入引用的页面串,页面串引用长度30-50,要求
  3. 所属分类:其它

    • 发布日期:2013-07-08
    • 文件大小:46199371
    • 提供者:zyt_sou_zhen
  1. 页面置换算法

    0下载:
  2. 模拟页面置换算法 1.创建空闲存储管理表、模拟内存、页表等。 2.提供一个用户界面,用户利用它可输入不同的页面置换策略和其他附加参数。 3.运行置换程序,输出缺页率结果。(1. create a free storage management table, analog memory, page tables and so on. 2. provides a user interface that allows users to input different page
  3. 所属分类:操作系统开发

    • 发布日期:2018-01-05
    • 文件大小:1697792
    • 提供者:ifan帆
  1. fifo页面置换算法模拟程序

    0下载:
  2. fifo页面置换算法模拟程序 1.请求分页的置换算法(FIFO && RUL算法实现);2.按给定的顺序列,输出页面调度过程包括命中 / 缺页,调入/调出;3.计算缺页率,频率。(FIFO page replacement algorithm simulation program)
  3. 所属分类:其他

    • 发布日期:2018-04-23
    • 文件大小:1024
    • 提供者:安安010
  1. 页面置换

    0下载:
  2. 页面置换算法的实现,FIFO页面置换,OPT页面置换,LRU页面置换(Implementation of page replacement algorithm, FIFO page replacement, OPT page replacement, LRU page replacement)
  3. 所属分类:操作系统开发

    • 发布日期:2018-04-30
    • 文件大小:1024
    • 提供者:密西西比
« 12 3 4 5 6 7 8 9 10 ... 26 »
搜珍网 www.dssz.com