CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - page replacement algorithm optimal
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - page replacement algorithm optimal - List
[
CSharp
]
先进先出页面算法程序
DL : 0
分别实现最佳置换算法(optimal)、先进先出(FIFO)页面置换算法和最近最久未使用(LRU)置换算法,并给出各算法缺页次数和缺页率。-respectively optimal replacement algorithm (optimal), FIFO (FIFO) page replacement algorithm and the most recent time on the use (LRU) replacement algorithm, the algorithm is given na na page number and page rate.
Date
: 2008-10-13
Size
: 3.17kb
User
:
asdf
[
CSharp
]
OS实验一
DL : 0
模拟实现三种页面置换算法:OPT,LRU,FIFO。-Simulation three pages replacement algorithm : OPT, LRU, FIFO.
Date
: 2025-07-11
Size
: 52kb
User
:
白马
[
CSharp
]
先进先出页面算法程序
DL : 0
分别实现最佳置换算法(optimal)、先进先出(FIFO)页面置换算法和最近最久未使用(LRU)置换算法,并给出各算法缺页次数和缺页率。-respectively optimal replacement algorithm (optimal), FIFO (FIFO) page replacement algorithm and the most recent time on the use (LRU) replacement algorithm, the algorithm is given na na page number and page rate.
Date
: 2025-07-11
Size
: 3kb
User
:
asdf
[
OS Develop
]
new
DL : 0
页面置换算法模拟的简单实现,及相关过程.-page replacement algorithm simulation of a simple realization, and the related process.
Date
: 2025-07-11
Size
: 1kb
User
:
许
[
OS Develop
]
Change
DL : 0
用JAVA实现操作系统的页面置换 其中包括 最佳置换算法(Optimal)、先进先出算法(First-in, First-out) 、最近最久不用的页面置换算法(LeastRecently Used Replacement)三种算法的实现-JAVA realization of the operating system with replacement pages including the best replacement algorithm (Optimal), FIFO algorithm (First-in, First-out), the most recent long-unused page replacement algorithm (LeastRecently Used Replacement) three algorithm
Date
: 2025-07-11
Size
: 21kb
User
:
王晓
[
OS Develop
]
zhihuan
DL : 0
操作系统实验 页面置换 fifo LRU 最优页面调度算法opT-Experimental operating system fifo LRU page replacement algorithm for optimal scheduling page opt
Date
: 2025-07-11
Size
: 1kb
User
:
bill
[
OS program
]
Optimal
DL : 0
存储管理中页面置换算法性能测试 要求:设系统采用固定分配局部置换的存储分配策略,编写仿真程序对下述页面 置换算法进行性能测试,并对结果进行分析和比较。 (1) 最佳适应(Optimal)页面置换算法; (2) 先进先出(FIFO)页面置换算法; (3) 最近最久未使用(LRU)页面置换算法; (4) 最少使用(LFU)页面置换算法。 要求可适用于键盘输入和自动产生随机页面走向序列两种数据输入方式。-Memory management page replacement algorithm in the performance testing requirements: system for the distribution of partial replacement of fixed storage allocation strategy, the preparation of simulation program on the following page replacement algorithm performance testing, and the results were analyzed and compared. (1) the best adaptation (Optimal) page replacement algorithm (2) First In First Out (FIFO) page replacement algorithm (3) the most recent use of long (LRU) page replacement algorithm (4) use at least (LFU) page replacement algorithm. Requirements applicable to the keyboard input and automatically generated pages to a random sequence of two data entry methods.
Date
: 2025-07-11
Size
: 2kb
User
:
pauly_917
[
Windows Develop
]
vc783453772452
DL : 0
C++代码写的有关页面置换算法的程序 实现OPT 算法 (最优置换算法) 、LRU 算法 (Least Recently) 、 FIFO 算法 (First IN First Out)的模拟-C++ code written on the page replacement algorithm OPT program algorithm (the optimal replacement algorithm), LRU algorithm (Least Recently), FIFO algorithm (First IN First Out) of the simulation
Date
: 2025-07-11
Size
: 1.82mb
User
:
lee
[
OS Develop
]
optimal
DL : 0
optimal page replacement algorithm source code simple & clean
Date
: 2025-07-11
Size
: 1kb
User
:
Mayur
[
JSP/Java
]
OperatingSystemPageReplacementAlgorithm
DL : 0
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 algorithm (LRU) (3) optimal replacement algorithm (OPT) (4) at least visit the page algorithm (LFU) ( Note: I changed improved by the Clock algorithm) (5) recently least frequently used algorithm (NUR)
Date
: 2025-07-11
Size
: 335kb
User
:
李锐歆
[
Other
]
os
DL : 0
采用页式分配存储方案,通过分别计算不同算法的命中率来比较算法的优劣,同时也考虑页面大小及内存实际容量对命中率的影响; 实现OPT 算法 (最优置换算法) 、LRU 算法 (Least Recently) 、 FIFO 算法 (First IN First Out)的模拟; -By page type allocation of storage solutions, were calculated by the hit rate of different algorithms to compare the merits of algorithms, taking into account the actual page size and memory capacity of the hit rate achieve OPT algorithm (the optimal replacement algorithm), LRU algorithm ( Least Recently), FIFO algorithm (First IN First Out) of the simulation
Date
: 2025-07-11
Size
: 4kb
User
:
kkk
[
OS program
]
Vir_Mem
DL : 0
2.设计一个虚拟存储区和内存工作区,并使用下述算法计算访问命中率。 1) 最佳置换算法(Optimal) 2) 先进先出法(Fisrt In First Out) 3) 最近最久未使用(Least Recently Used) 4) 最不经常使用法(Least Frequently Used) 5) 最近未使用法(No Used Recently) 其中,命中率=1-页面失效次数/页地址流长度。 试对上述算法的性能加以较各:页面个数和命中率间的关系;同样情况下的命中率比较。 -2. To design a virtual memory storage area and work area, and access using the following algorithm to calculate the hit rate. 1) The best replacement algorithm (Optimal) 2) FIFO (Fisrt In First Out) 3) most recently from lack of use (Least Recently Used) 4) the least frequently used method (Least Frequently Used) 5) does not use a recently (No Used Recently) where hit rate = 1- invalid page number/page address stream length. Test the performance of the algorithms to be compared with each: the page number and the relationship between hit rate the same hit rate in case of comparison.
Date
: 2025-07-11
Size
: 2kb
User
:
zhongkeli
[
Mathimatics-Numerical algorithms
]
yemian
DL : 0
页面置换算法包括:最佳(Optimal)置换算法、先进先出(FIFO)算法、最近最久未使用(LRU)算法 -Page replacement algorithm, including: Best (Optimal) replacement algorithm, first in first out (FIFO) algorithm, most recently from lack of use (LRU) algorithm
Date
: 2025-07-11
Size
: 2kb
User
:
dlq
[
Mathimatics-Numerical algorithms
]
Page-replacement-algorithm
DL : 0
分别实现最佳置换算法(optimal)、先进先出(FIFO)页面置换算法和最近最久未使用(LRU)置换算法,并给出各算法缺页次数和缺页率。 -Respectively, to achieve optimal replacement algorithm (optimal), First In First Out (FIFO) page replacement algorithm and the most-recently-used recently (LRU) replacement algorithm, and gives the algorithm the number of missing pages and missing page rate.
Date
: 2025-07-11
Size
: 83kb
User
:
唐艰苦
[
OS Develop
]
os_page_replacement_algorithm
DL : 0
操作系统 页面置换算法 包扩随机置换算法、先进先出、最佳、LRU等6种置换算法的实现-Operating system Page replacement algorithm,LRU,FIFO,Optimal Etc.
Date
: 2025-07-11
Size
: 2.6mb
User
:
林俊文
[
OS Develop
]
FIFO-Optimal-LRU
DL : 0
实现了页面置换的FIFO算法,LRU算法。-The FIFO page replacement algorithm, LRU algorithm.
Date
: 2025-07-11
Size
: 498kb
User
:
Dwxiao
[
OS Develop
]
os
DL : 0
存储管理中页面置换算法性能测试 要求:设系统采用固定分配局部置换的存储分配策略,编写仿真程序对下述页面 置换算法进行性能测试,并对结果进行分析和比较。 (1) 最佳适应(Optimal)页面置换算法; (2) 先进先出(FIFO)页面置换算法; (3) 最近最久未使用(LRU)页面置换算法; (4) 最少使用(LFU)页面置换算法。 要求可适用于键盘输入和自动产生随机页面走向序列两种数据输入方式。-Page replacement algorithm performance testing requirements in the storage management: Let the system using the partial replacement of the fixed allocation of memory allocation strategy, the preparation of the simulation program on the following page replacement algorithm for performance testing, and the results were analyzed and compared. (1) the best fit (Optimal) page replacement algorithm (2) First In First Out (FIFO) page replacement algorithm (3) the most-recently-used (LRU) page replacement algorithm (4) at least one (LFU) page replacement algorithm. Requirements applicable to the keyboard input and automatically generates a random page toward the sequence of the two data input.
Date
: 2025-07-11
Size
: 1.7mb
User
:
周明明
[
Windows Develop
]
os_page
DL : 0
页面置换算法。实现最佳(Optimal)置换算法、先进先出(FIFO)置换算法、最近最久未使用(LRU)置换算法、简单Clock置换算法-Page replacement algorithm. Optimal (Optimal) replacement algorithm, FIFO (FIFO) replacement algorithm, the most recent time used (LRU) replacement algorithm, a simple replacement algorithm Clock
Date
: 2025-07-11
Size
: 309kb
User
:
春春
[
Other
]
ChangePage
DL : 0
操作系统-页面置换算法-最佳页面置换、先进先出、最近最久未使用,课程设计-Operating system- page replacement algorithm- Optimal, FIFO, LRU, course design
Date
: 2025-07-11
Size
: 2kb
User
:
HeddaZhu
[
OS Develop
]
OPTIMAL.C.tar
DL : 0
optimal page replacement algorithm
Date
: 2025-07-11
Size
: 1kb
User
:
sam
«
1
2
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.