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

搜索资源列表

  1. main

    1下载:
  2. 操作系统实验(LINUX): 设计一个虚拟存储区和内存工作区,并使用下列算法计算访问命中率. (1) 进先出的算法(FIFO) (2) 最近最少使用的算法(LRU) (3) 最佳淘汰算法(OPT) (4) 最少访问页面算法(LFU) (5) 最近最不经常使用算法(NUR) 命中率=(1-页面失效次数)/页地址流长度
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:2296
    • 提供者:zengzl
  1. pusula

    0下载:
  2. 对页面置换算法的模拟分析,包括FIFO,LRU,OPT,LFU,NUR-right pages replacement algorithm simulation analysis, including FIFO, the LRU, OPT, LFU, NUR
  3. 所属分类:界面编程

    • 发布日期:2008-10-13
    • 文件大小:7402
    • 提供者:王晓萍
  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. Procedures used functions to gen
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:1866
    • 提供者:衣明玉
  1. OS课题设计

    0下载:
  2. 任务 设计一个虚拟存储区和内存工作区,并使用下述算法计算访问命中率。 (1)先进先出的算法(FIFO) (2)最近最少使用算法(LRU) (3)最佳淘汰算法(OPT) (4)最少访问页面算法(LFU) (5)最近最不经常使用算法(NUR) 命中率=(1 – 页面失效次数)/页地址流长度-mission design a virtual memory storage area and the work area and to use the following algorithm to visit
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:2639
    • 提供者:东方少秋
  1. suanfa.rar

    2下载:
  2. (3)计算并输出下述各种算法在不同内存容量下的命中率。 ①先进先出算法FIFO ②最近最少使用算法LRU ③最佳淘汰算法OPT:先淘汰最不常用的页地址 ④最少访问页面算法LFU ⑤最近最不经常使用算法NUR ,(3) calculate and output a variety of algorithms in different memory of the percentage of hits. FIFO FIFO ② ① algorithm least recently used
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-27
    • 文件大小:5949
    • 提供者:毕言朋
  1. cache_replacement

    0下载:
  2. Cache 替换算法,结合LRU和LFU的一个替换算法-Cache replacement algorithm, combined with LRU and LFU replacement algorithm
  3. 所属分类:Other systems

    • 发布日期:2017-03-30
    • 文件大小:3653
    • 提供者:harry
  1. Desktop

    0下载:
  2. lfu and lru c code... operating systems
  3. 所属分类:OS Develop

    • 发布日期:2017-04-11
    • 文件大小:1022
    • 提供者:raghav
  1. ReplacePage

    0下载:
  2. Page Replacement with FIFO LRU LFU
  3. 所属分类:Applet

    • 发布日期:2017-04-11
    • 文件大小:1439
    • 提供者:Kamal
  1. yuandaima

    0下载:
  2. 设计一个虚拟存储区和内存工作区 , 并使用下述算法计算访问命中率。 (1) 先进先出的算法 (FIFO) (2 )最近最少使用算法 (LRU) (3) 最佳淘汰算法 (OPT) (4) 最少访问页面算法 (LFU) (5 )最近最不经常使用算法 (NUR)-Design a virtual memory storage area and work area, and access using the following algorithm to calculate the h
  3. 所属分类:OS Develop

    • 发布日期:2017-03-28
    • 文件大小:3442
    • 提供者:时雨存心
  1. yeshiguanlizhihuansuanfa

    0下载:
  2. 采用FIFO(先进先出)置换算法,发生缺页中断时,给出相应的字地址及页号,计算缺页中断率。 采用LFU(最不经常使用)置换算法,发生缺页中断时,给出相应的字地址及页号,计算缺页中断率。 -os experiment
  3. 所属分类:OS Develop

    • 发布日期:2017-03-28
    • 文件大小:273695
    • 提供者:尹新钰
  1. LA2U-Replacealgorithm

    0下载:
  2. 一个项目研究中的缓存替换算法LA2U,在传统访问频率的基础上,考虑了更新频率,性能优于LRU和LFU-A replace algorithm called LA2U,which considers both access rate and update rate ,and performance is better than LRU and LFU
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:241976
    • 提供者:yangjun
  1. os

    0下载:
  2. 存储管理中页面置换算法性能测试 要求:设系统采用固定分配局部置换的存储分配策略,编写仿真程序对下述页面 置换算法进行性能测试,并对结果进行分析和比较。 (1) 最佳适应(Optimal)页面置换算法; (2) 先进先出(FIFO)页面置换算法; (3) 最近最久未使用(LRU)页面置换算法; (4) 最少使用(LFU)页面置换算法。 要求可适用于键盘输入和自动产生随机页面走向序列两种数据输入方式。-Page replacement algor
  3. 所属分类:OS Develop

    • 发布日期:2017-04-09
    • 文件大小:1777841
    • 提供者:周明明
  1. OS-Page-replacement-algorithm

    0下载:
  2. 操作系统课程设计报告-页面置换算法模拟系统,模拟了进先出的算法(FIFO),最佳淘汰算法(OPT),最近最久未使用算法(LRU),最少访问页面算法(LFU),并含有DOS界面的菜单选择模块-OS Page replacement algorithm
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-10
    • 文件大小:3070958
    • 提供者:陈明明
  1. abc

    0下载:
  2. 页面置换算法,包括随机生成页面的算法还有FIFO和LFU的算法,其中比较两种算法的缺页中断和缺页中断率。-Page replacement algorithms, including random page generation algorithm and FIFO and LFU algorithm, which compares the two algorithms of the missing pages interruption and missing pages interruptio
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-28
    • 文件大小:735727
    • 提供者:周晗
  1. yeshicunchuguanli

    0下载:
  2. 操作系统页式存储管理的FIFO,LFU算法-Page memory management of the operating system, FIFO, LFU algorithm
  3. 所属分类:CSharp

    • 发布日期:2017-11-10
    • 文件大小:1024
    • 提供者:李宇
  1. jinchengguanlidiaoducunchuguanli

    0下载:
  2. 实验一 进程管理 1.目的和要求    加强对进程概念的理解。 2.实验内容    至少要有:创建新的进程;查看运行进程;换出某个进程;杀死运行进程以及进程之间通信等功能。 3.实验环境    Windows、DOS系统    TC语言 实验二:进程调度 【实验内容】 设计一个有 N个进程共行的进程调度程序。      进程调度算法:采用最高优先数优先的调度算法(即把处理机分配给优先数最高的进程)和先来先服务算法。 实验三 存储管理
  3. 所属分类:Other systems

    • 发布日期:2017-11-28
    • 文件大小:372212
    • 提供者:张亭亭
  1. Page_Replacement

    0下载:
  2. 模拟页面置换算法,通过随机产生序列运用FIFO LRU LFU OPT对其进行置换-Simulation page replacement algorithm, randomly generated sequences use FIFO LRU LFU OPT its replacement
  3. 所属分类:Other systems

    • 发布日期:2017-11-28
    • 文件大小:2457906
    • 提供者:123
  1. nfu

    0下载:
  2. LRU老化算法 主要实现了一下三个算法模拟:FIFO算法,LRU算法,LFU算法 FIFO:先进先出页置换算法 LRU:最近最久未使用页置换算法 LFU:最不经常使用页置换算法 -The The LRU aging algorithm main achievement of the three algorithms simulation: FIFO algorithm, LRU algorithm, LFU algorithm FIFO: first-in, fir
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-09
    • 文件大小:38953
    • 提供者:株株
  1. LFUPClock

    0下载:
  2. 最少使用(LFU)置换算法仿真请求分页系统-Least used (LFU) replacement algorithm simulation demand paging system
  3. 所属分类:Java Develop

    • 发布日期:2017-11-19
    • 文件大小:4560462
    • 提供者:HWH
  1. memoryanalog

    0下载:
  2. 模拟内存页面置换的五个算法fifo,opt,lfu,lru,clockAnalog memory page replacement-Analog memory page replacement
  3. 所属分类:Game Program

    • 发布日期:2017-04-16
    • 文件大小:251041
    • 提供者:环境光
« 1 23 »
搜珍网 www.dssz.com