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

搜索资源列表

  1. ymdd

    0下载:
  2. 页面调度算法主要有:FIFO,最近最少使用调度算法(LRU),最近最不常用调度算法(LFU),最佳算法(OPT) 题目要求: ① 实现三种算法:1、先进先出;2、OPT;3、LRU ② 页面序列从指定的文本文件(TXT文件)中取出 ③ 输出:第一行:每次淘汰的页面号,第二行:显示缺页的总次数
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:1761
    • 提供者:sunny
  1. cache4j_0.4_src

    0下载:
  2. cache4j是一个有简单API与实现快速的Java对象缓存。它的特性包括:在内存中进行缓存,设计用于多线程环境,两种实现:同步与阻塞,多种缓存清除策略:LFU, LRU, FIFO,可使用强引用(strong reference)与软引用(soft reference)存储对象。-cache4j is a simple API and achieving rapid Java Object Cache. Its features include : in memory for caching,
  3. 所属分类:JSP源码/Java

    • 发布日期:2008-10-13
    • 文件大小:51071
    • 提供者:ytr
  1. FIFO-LFU

    0下载:
  2. 用C语言实现操作系统请求页面调度算法FIFO LFU的实现 提前装入0,5,6页最后能够计算出缺页中断率-Operating system using C language the page is requested the implementation of scheduling algorithms FIFO LFU advance into 0,5,6 page last page fault rate to calculate the vacancy
  3. 所属分类:Data structs

    • 发布日期:2017-03-22
    • 文件大小:2170
    • 提供者:sunying
  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. cache

    0下载:
  2. (1)FIFO:First In First Out,先进先出 (2)LRU:Least Recently Used,最近最少使用 (3)LFU:Least Frequently Used,最不经常使用-(1)FIFO:First In First Out (2)LRU:Least Recently Used (3)LFU:Least Frequently Used
  3. 所属分类:Other systems

    • 发布日期:2017-11-12
    • 文件大小:652999
    • 提供者:鲁龙年
  1. Optimal

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

    • 发布日期:2017-03-31
    • 文件大小:2083
    • 提供者:pauly_917
  1. Linux_2_36060302_36060304_36060307_36060323

    0下载:
  2. 操作系统实验:模拟LINUX操作系统的虚存管理机制,采用多道程序控制方式、多级页表、FIFO请求方式完成对实存辅存的映射管理,处理访存请求。实现了FIFO、LRU、LFU等页表淘汰算法。-Experimental operating system: LINUX operating system simulation of virtual memory management mechanism, the use of multi-channel control mode, multi-level
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-29
    • 文件大小:610476
    • 提供者:李毅
  1. fifo

    0下载:
  2. c语言实现内存调度 FIFO LFU LRU 基于vc6.0 -c language memory-based FIFO LFU LRU scheduling vc6.0
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-30
    • 文件大小:1245
    • 提供者:小弟
  1. PageChange

    0下载:
  2. 页面置换算法演示及其性能测试系统: 1最佳适应(Optimal) 2先进先出(FIFO) 3最近最久未使用(LRU) 4最少使用(LFU) 5内存页面数配置 6输入测试- the system of Page replace arithmetic demo and to testing of the capability
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-23
    • 文件大小:14684
    • 提供者:zhhuo
  1. LFU

    0下载:
  2. program to implement the least frequently used algorithm in computer networks
  3. 所属分类:Network Security

    • 发布日期:2017-04-02
    • 文件大小:726
    • 提供者:Juned
  1. 4

    0下载:
  2. (1)掌握页式管理基本原理 (2)掌握几种常用页面置换算法 按照最不经常使用页面置换算法(LFU Least Frequently Used)设计页面置换模拟程序-(1) master the basic principles of page-style management (2) The master of several commonly used page replacement algorithms in accordance with the least frequently
  3. 所属分类:OS Develop

    • 发布日期:2017-04-05
    • 文件大小:1520
    • 提供者:超越
  1. cache

    0下载:
  2. 实现cache替换算法,思路是改进的LRU和LFU算法,在一定程度上提高了原来的LRU算法的命中率。-Achieve cache replacement algorithm, idea is to improve the LRU and LFU algorithms, to a certain extent, the original LRU algorithm to improve the hit rate.
  3. 所属分类:OS Develop

    • 发布日期:2017-03-24
    • 文件大小:3761
    • 提供者:闫雪飞
  1. FLU

    0下载:
  2. LRU算法和FIFO OPT LFU算法 -LRU algorithm and the FIFO OPT LFU algorithm
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-02
    • 文件大小:1193
    • 提供者:周俊
  1. aa

    0下载:
  2. 页面存储模式LRU,LFU,OPT,NUR-Page storage mode LRU, LFU, OPT, NUR
  3. 所属分类:系统编程

    • 发布日期:2017-04-03
    • 文件大小:892143
    • 提供者:周神
  1. memoryanalog

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

    • 发布日期:2017-03-31
    • 文件大小:250861
    • 提供者:胡扯蛋
  1. 11

    0下载:
  2. lfu and fifo and optimal algoritm comparison
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:2069
    • 提供者:ali.saadat81
  1. FIFO-LFU

    0下载:
  2. 请求页式管理中的置换算法包括 采用LFU(最不经常使用)置换算法 采用FIFO(先进先出)置换算法-The request page management of replacement algorithm
  3. 所属分类:OS Develop

    • 发布日期:2017-11-07
    • 文件大小:1117
    • 提供者:周晗
  1. lfu

    0下载:
  2. LFU算法,页面置换算法,随机生成页号,计算缺页次数和缺页率-The LFU algorithm, the page replacement algorithm, randomly generated page number, calculate the number of page faults and page fault rate
  3. 所属分类:CSharp

    • 发布日期:2017-04-12
    • 文件大小:1453
    • 提供者:lpz
  1. LFU

    0下载:
  2. LFU算法,页面置换算法,随机生成页号,可选择手动输入,计算缺页次数和缺页率-The LFU algorithm, the page replacement algorithm, randomly generated page number, can choose manual input, calculating the number of page faults and page fault rate
  3. 所属分类:CSharp

    • 发布日期:2017-04-13
    • 文件大小:1928
    • 提供者:lpz
  1. LFU

    0下载:
  2. 是flu算法 是在命令行中输入数据流来进行调度,有计算缺页率。不是从txt中读取。是为了。LFU是最近最不常用页面置换算法(Least Frequently Used),也就是淘汰一定时期内被访问次数最少的页!要求在页置换时置换引用计数最小的页,因为经常使用的页应该有一个较大的引用次数-Main page scheduling algorithm: FIFO, least recently used scheduling algorithm (LRU), least recently used
  3. 所属分类:CSharp

    • 发布日期:2017-04-15
    • 文件大小:4995
    • 提供者:Alice zang
« 12 3 »
搜珍网 www.dssz.com