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

搜索资源列表

  1. 10703

    0下载:
  2. 模拟实现操作系统中页面置换算法,包括最近最久未使用算法,先进先出算法和最佳实现算法-Simulation of real operating system, Page-Replacement Algorithms
  3. 所属分类:OS Develop

    • 发布日期:2017-05-02
    • 文件大小:831549
    • 提供者:李华
  1. vmrp

    0下载:
  2. 加深对于存储管理的了解,掌握虚拟存储器的实现原理;观察和了解重要的页面 置换算法和置换过程。练习模拟算法的编程技巧,锻炼分析试验数据的能力。 -Deepen the understanding of storage management, control and implementation principle of virtual memory observe and understand the importance of the page replacement algorith
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-05
    • 文件大小:1772
    • 提供者:jeremy
  1. page_replacement_algorithm

    0下载:
  2. 三种经典的页面置换算法(OPT,LRU,FIFO)模拟实现-Page replacement algorithm of three classic (OPT, LRU, FIFO) simulation to achieve
  3. 所属分类:OS Develop

    • 发布日期:2017-05-04
    • 文件大小:1415137
    • 提供者:征尘
  1. PageReplace

    0下载:
  2. 页面置换算法包含可执行程序用 C#做的做了很久 模拟小程序-Page replacement algorithm contains an executable program using C# to do a small procedure done for a long time simulation
  3. 所属分类:CSharp

    • 发布日期:2017-04-04
    • 文件大小:14444
    • 提供者:刘达
  1. 12123

    0下载:
  2. 模拟页面置换算法 页面置换 操作系统-Page replacement algorithm simulated operating system
  3. 所属分类:Java Develop

    • 发布日期:2017-04-13
    • 文件大小:2352
    • 提供者:vic
  1. YEMIANZHIHUAN

    0下载:
  2. 操作系统 页面置换算法的模拟。 -Operating system page replacement algorithm simulation. Operating system page replacement algorithm simulation.
  3. 所属分类:Java Develop

    • 发布日期:2017-04-01
    • 文件大小:2930
    • 提供者:EN
  1. memory

    0下载:
  2. 操作系统 模拟实验 页面置换算法之一:最近最少使用算法,功能实现-Operating system page replacement algorithm of simulation experiments: the least recently used algorithm, the function realization
  3. 所属分类:OS Develop

    • 发布日期:2017-04-11
    • 文件大小:1138
    • 提供者:
  1. LRU

    0下载:
  2. LRU页面淘汰算法模拟程序(源码) 产生一个进程的大小,构建页表并对页表进行初始化,随后生成访问的指令地址流(是一系列需要访问的指令的地址)。不失一般性,可以适当地(人工指定或随机数产生器)生成这个序列,使得 50%的指令是顺序执行的,50%的指令均匀地散布在前后地址部分。 每访问一个地址时,首先要计算该地址所在的页的页号,然后查页表,判断该页是否在主存——如果该页已在主存,则打印页表情况;如果该页不在主存且页表未满,则调入一页并打印页表情况;如果该页不足主存且页表已满,则按页面淘汰算
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-08
    • 文件大小:1898496
    • 提供者:jennif
  1. virtual-memory

    1下载:
  2. 用java编程模拟虚拟存储器功能,可以模拟演示FIFO页面置换算法:LRU页面置换算法:以及最佳页面置换算法 的运行过程 程序采用了多线程技术,使得运行过程更人性化-Java programming with simulated virtual memory function, can simulate the FIFO page replacement algorithm demo: LRU page replacement algorithm: the best page replac
  3. 所属分类:JSP源码/Java

    • 发布日期:2013-11-01
    • 文件大小:7387
    • 提供者:maksung
  1. yemian

    0下载:
  2. 程序模拟的是一个操作系统页面置换算法实例-Process simulation is an operating system page replacement algorithm instance
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:31185
    • 提供者:赵卫东
  1. exp6

    0下载:
  2. 编程模拟一个作业的执行过程,用户输入系统分配给该作业的物理块N和该作业要访问的逻辑页号序列长度L,采用下面不同的页面置换算法:FIFO,LRU,OPT,LFR,NUR,给出不同算法下的页面置换情况及其对应的缺页率-Programmed to simulate a job execution, the user input system assigned to the job and the job of physical block N logical page number to access
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-08
    • 文件大小:1475
    • 提供者:erevus
  1. page-replace

    0下载:
  2. 模拟实现了操作系统中的页面置换算法,包括LRU,FIFO等算法,-Simulation to achieve the operating system page replacement algorithm
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:868042
    • 提供者:申震明
  1. os_exp2

    0下载:
  2. 编程序模拟请求页面调度中的页面置换算法,基于同样的页面序列对比它们的命中率,观察当物理内存容量变化时算法的结果有什么不同。-Programmable analog paging request in the page replacement algorithm, based on the same page sequence comparison of their hit rate was observed when the algorithm changes the physical memo
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-01
    • 文件大小:2246
    • 提供者:lixinkai
  1. yemianzhihuan

    0下载:
  2. 设计程序模拟先进先出FIFO,最佳置换OPI和最近最久未使用LRU页面置换算法的工作过程。假设内存中分配给每个进程的最小物理块数为m,在进程运行过程中要访问的页面个数为n,页面访问序列为P1, … ,Pn,分别利用不同的页面置换算法调度进程的页面访问序列,给出页面访问序列的置换过程,计算每种算法缺页次数和缺页率。-Design program to simulate FIFO FIFO, the best and most recent displacement most-recently-us
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-10
    • 文件大小:1703632
    • 提供者:gst
  1. LRU

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

    • 发布日期:2017-05-08
    • 文件大小:1962400
    • 提供者:李超
  1. yemianzhihuansuanfa

    1下载:
  2. 操作系统课程设计,页面置换算法 (1)建立相应的数据结构; (2)在屏幕上显示页面的状况; (3)时间的流逝可用下面几种方法模拟:(a)按键盘,每按一次可认为一个时间 单位;(b)响应WM_TIMER (4)将一批页的置换情况存入磁盘文件,以后可以读出并重放; (5)计算页面的缺页次数、缺页后的页面置换次数; (6)支持算法:FIFO、LRU、、clock算法、最佳置换算法。 -ye mian zhi huan suan fa
  3. 所属分类:OS Develop

    • 发布日期:2015-01-12
    • 文件大小:143360
    • 提供者:卜晨阳
  1. 1

    0下载:
  2. 通过模拟实现请求页式存储管理的几种基本页面置换算法,了解虚拟存 储技术的特点,掌握虚拟存储请求页式存储管理中几种基本页面置换算 法的基本思想和实现过程,并比较它们的效率。-Page replacement algorithm for simulation-based management
  3. 所属分类:OS Develop

    • 发布日期:2017-03-27
    • 文件大小:1739
    • 提供者:xhu124
  1. Page-replacement

    0下载:
  2. 页面置换算法的模拟实现及命中率对比.通过模拟实现几种基本页面置换的算法,了解虚拟存储技术的特点-Simulation of page replacement algorithm, and the hit rate compared to several basic page replacement algorithm through simulation to understand the characteristics of virtual storage technology
  3. 所属分类:OS Develop

    • 发布日期:2017-03-28
    • 文件大小:169494
    • 提供者:Qugo
  1. Operating-system

    0下载:
  2. 模拟了操作系统中的5中页面置换算法,fcfs,SJF,HRN,RR和静态优先权,并且显示平均周转时间和带权周转时间。-Simulation of the operating system in the 5 page replacement algorithm, FCFS, SJF, HRN, RR and static priority, and shows the average turnaround time and turnaround time with the right.
  3. 所属分类:OS Develop

    • 发布日期:2017-05-29
    • 文件大小:11917877
    • 提供者:李娟娟
  1. PageReplace

    0下载:
  2. 实现操作系统页面置换算法(四个)的模拟,操作系统实验-Simulation of the operating system page replacement algorithm (four), the operating system experiment
  3. 所属分类:OS Develop

    • 发布日期:2017-04-01
    • 文件大小:16697
    • 提供者:
« 1 2 3 4 56 7 8 »
搜珍网 www.dssz.com