搜索资源列表
用C语言实现最近最久未使用(LRU)置换算法
- c语言编的LRU置换算法,word文档格式-series of the LRU algorithm replacement, word document formats
LRU算法的自编c++实现及源码。
- 实现LRU算法的C++版,word环境下写的,c++环境下运行-LRU algorithm to achieve the C version, word environment written in the running environment c
LRU页面置换算法模拟 CNBIE
- LRU页面置换算法模拟,LRU置换算法虽然是一种比较好的算法,但要求系统有较多的支持硬件。为了了解一个进程在内存中的各个页面各有多少时间未被进程访问,以及如何快速地知道哪一页是最近最久未使用的页面.-LRU algorithm simulation replacement pages, the LRU algorithm replacement is a better algorithm, but requires a system with more hardware support. In
lru-cache
- 使用LRU方法更新Cache 结合数据结构的相关知识,使用LRU的策略,对一组访问序列进行内部的Cache更新 并附实验报告-use LRU Cache update method combining data structures and the related knowledge, the use of the LRU strategy the group visited a sequence within the Cache update accompanied experimen
queyejisuan.LRU
- 执行程序时,当主存没有可用页面时,为了选择淘汰主存中的哪一页面,腾出1个空闲块以便存放新调入的页面。淘汰哪个页面的首要问题是选择何种置换算法。该程序采用LRU方法选择,依置换策略选择一个可置换的页面并计算它们的缺页率以便比较。 -implementation procedures, when the main pages can be no deposit, in order to choose out of the main deposit which pages, spare a spa
本程序只要介绍LRU算法
- 本程序只要介绍LRU算法
页片置换中的FIFO、LRU和OPT算法
- 页式管理关于缺页、中断、优化的FIFO、LRU和OPT算法,通过三种算法,可分别计算得出在页片置换中的缺页次数和缺页率以及被淘汰的页号...
LRU.rar
- lru page replacement program using c++,lru page replacement program using c++
The-LRU-K-page-algorithm
- LRU-k是一个在LRU基础上进行提升的算法,在处理数据队列时,使用了更有效的优先级计算方法-LRU-K is a advanced algorithm based on LRU. It computes the priorities of the data items more accurately and avoid some occasional cases.
lru
- 请求分页式存储管理 运用LRU(最近最少使用页面先淘汰)算法 -Request the use of storage management Tabbed LRU (least recently used page first out) algorithm
LRU
- 虚拟内存中的LRU算法,有需要的可以拿去参考一下啊-Virtual memory in the LRU algorithm, there is a need to be taken to refer to the ah
LRU
- 操作系统内存管理的页面置换算法 LRU 同学做的 已试验过,相当好-os LRU manage
lru
- LRU模拟:其基本原理为:如果某一个页面被访问了,它很可能还要被访问;相反,如果它长时间不被访问,再最近未来是不大可能被访问的。-LRU simulation: the basic principles: If a page was visited, which are likely to be visited the other hand, if it is not a long visit, and then the future is unlikely to be a recent vi
lru
- lru算法操作系统实验lru算法实验源代码轻松完成实验-lru algorithm lru algorithm experiment experimental operating system source code to easily complete the experiment
LRU
- 操作系统实验当中非常好的LRU算法,不信你自己-Experiments were very good operating system, LRU algorithm, do not believe you could see for himself
LRU
- 请求页式管理缺页中断模拟设计-- LRU、随机淘汰算法-The requested page-style management page fault analog design- LRU, random elimination algorithm
FIFO-LRU-OPT-Clock
- 页面置换算法,FIFO,LRU,OPT,NUR。-Page replacement algorithm
LRU
- 用高级语言模拟页面置换算法LRU,加深对LRU算法的认识。 其基本原理为: 如果某一个页面被访问了,它很可能还要被访问;相反,如果它长时间不被访问,在最近未来的时间里是不大可能被访问的。(Using high-level language simulation page replacement algorithm LRU, deepen the understanding of the LRU algorithm. The basic principle is: If a page is
LRU算法
- 操作系统 LRU算法 实验报告 及 程序代码服务一条龙(Operating system LRU algorithm experiment report and program code, service one-stop)
array-doubly-linked-lru
- 基于数组的LRU队列,可以动态添加与删除元素(In this code, we realize a LRU queue based on an array)