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

搜索资源列表

  1. fifo

    0下载:
  2. 一个FIFO的页面置换算法,使用java实现-A FIFO page replacement algorithm, the use of java to achieve
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:3313
    • 提供者:stephenzou
  1. TestReplacement

    0下载:
  2. lru页面置换算法 随机序列 java源代码-LRU page replacement algorithm for random sequence java source code
  3. 所属分类:Java Develop

    • 发布日期:2017-04-07
    • 文件大小:1527
    • 提供者:从零开始
  1. FIFO

    0下载:
  2. 操作系统实践课程实验,页面置换的4种方法,FIFO等-Practice Course experimental operating system, page replacement of the four kinds of methods, FIFO, etc.
  3. 所属分类:OS Develop

    • 发布日期:2017-04-02
    • 文件大小:1512
    • 提供者:gf
  1. ymzh

    0下载:
  2. 操作系统内存调度中的页面置换算法模拟过程。-Scheduling the operating system memory page replacement algorithm simulation.
  3. 所属分类:OS Develop

    • 发布日期:2017-03-31
    • 文件大小:4774
    • 提供者:xun
  1. Clock

    0下载:
  2. 改进型CLOCK 页面置换算法实现在进程运行过程中,若其要访问的页面不在内存而需要调入内存,但分配该进程的内存 空间已经用完时,为了保证该进程能继续执行,需要从内存中把该进程的一些页调入外存中 的对换区,但调出那个页面,可以采用不同的算法。-Improved CLOCK page replacement algorithm in the process of running the course, if its trying to access pages of memory need
  3. 所属分类:OS Develop

    • 发布日期:2017-03-28
    • 文件大小:7871
    • 提供者:李方
  1. fifo

    0下载:
  2. 页面置换先进先出算法,请大家试试,本人鉴定没问题-FIFO page replacement algorithm, please try, I did not identify the problem
  3. 所属分类:OS Develop

    • 发布日期:2017-04-10
    • 文件大小:1200
    • 提供者:wx
  1. FIFO

    0下载:
  2. 课程设计报告_先进先出(FIFO)页面置换算法 里面全齐,不过是DOS的界面,希望对大家有些帮助 -Curriculum design report _ FIFO (FIFO) page replacement algorithm inside homogeneous whole, but DOS interface, I hope all of you some help
  3. 所属分类:Education soft system

    • 发布日期:2017-05-09
    • 文件大小:6936
    • 提供者:叶寒
  1. code

    0下载:
  2. 存储管理的主要功能之一是合理地分配空间。请求页式管理是一种常用的虚拟存储管理技术。 本实验的目的是通过请求页式存储管理中页面置换算法模拟设计,了解虚拟存储技术的特点,掌握请求页式存储管理的页面置换算法。 -Storage management is one of the main functions of a reasonable allocation of space. Page request is a common management of virtual storage man
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-30
    • 文件大小:1649
    • 提供者:王一
  1. vc34752424

    0下载:
  2. 页面置换算法的源代码 希望对大家有所帮助 一起交流呀-Page replacement algorithm source code for all of us want to help you with the exchange of
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-01
    • 文件大小:1684
    • 提供者:王洪原
  1. page

    0下载:
  2. 页面置换算法的模拟实现和计算命中率 操作系统必要-Page replacement algorithm simulation and calculation of the percentage of hits to achieve the necessary operating system
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:26597
    • 提供者:liuguo
  1. zhihuan

    0下载:
  2. 操作系统实验 页面置换 fifo LRU 最优页面调度算法opT-Experimental operating system fifo LRU page replacement algorithm for optimal scheduling page opt
  3. 所属分类:OS Develop

    • 发布日期:2017-03-23
    • 文件大小:1657
    • 提供者:bill
  1. shiyan2

    0下载:
  2. 通过请求页式存储管理中页面置换算法模拟设计,了解虚拟存储技术的特点,掌握请求页式管理的页面置换算法。-Through the request page storage management page replacement algorithm for analog design, understanding the characteristics of virtual storage technology to master the request page management page re
  3. 所属分类:OS Develop

    • 发布日期:2017-04-13
    • 文件大小:2300
    • 提供者:周青
  1. Fifopagereplacementalgorithm

    0下载:
  2. 页面置换算法 包括fifo 先进现出,最近最早未使用,lru算法-Fifo page replacement algorithm, including advanced show, the first unused recently, lru algorithm
  3. 所属分类:Other systems

    • 发布日期:2017-04-28
    • 文件大小:10936
    • 提供者:刘燕
  1. PageReplacement

    0下载:
  2. 实现了几种内存页面置换算法,有最佳置换算法和先进先出置换算法,还有LRU置换算法。-To achieve a number of memory page replacement algorithm, the best replacement algorithm and FIFO replacement algorithm, as well as LRU replacement algorithm.
  3. 所属分类:OS Develop

    • 发布日期:2017-04-24
    • 文件大小:52141
    • 提供者:zhouyunkai
  1. process_manager

    2下载:
  2. 支持多道程序的进程控制模块的设计与实现,要求完成以下功能: 1,进程控制:创建、撤销、阻塞、唤醒 2,进程调度:CPU调度算法 3,进程同步:信号量的定义、信号量的操作(wait、signal) 4,内存管理:实现页式内存管理、LRU页面置换 5,中断处理:中断响应、中断处理 6,时钟管理:时钟、定时器 7,用图形化方式展示多进程并发执行过程 -Support the process of multi-channel process control module of
  3. 所属分类:Windows Kernel

    • 发布日期:2016-02-16
    • 文件大小:1977223
    • 提供者:yefeng
  1. ncist061111

    0下载:
  2. 页面置换算法三种算法分别描述! -wws
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-13
    • 文件大小:3318
    • 提供者:wss
  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 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 26 »
搜珍网 www.dssz.com