Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - FIFO
Search - FIFO - List
DL : 0
模拟实现三种页面置换算法:OPT,LRU,FIFO。-Simulation three pages replacement algorithm : OPT, LRU, FIFO.
Update : 2024-05-16 Size : 53248 Publisher : 白马

基本算法思想 OPT:该算法的基本思想是用二维数组page2[40][2] 的第一列存储装入内存的页面,而第二列用作标记位计数器。每当发生缺页时,就从内存中调出一页,首先将内存中的页面一一与要调入内存中的页面之后的页面比较,如果两个页面不相等,则内存中相应的页面的标记位计数器加一,直至到有相等的页面,则该页面的比较停止,再重复以上操作,直至内存中的页面全部比较完。然后找出内存中页面的标记位最大的页面,而该页就是要置换出来的页。 FIFO: 该算法的基本思想是用队列queue存储内存中的页面,队列的特点是先进先出,与该算法是一致的,所以每当发生缺页时,就从队头删除一页,即队头指针加一,而从队尾加入缺页,队尾指针加一。 LRU: 该算法的基本思想是用二维数组page2[40][2] 的第一列存储装入内存的页面,而第二列用作标记位计数器。每当使用页面时,该页面的标记位计数器加一。发生缺页时,就从内存中页面标记最小的一页,调出该页,并且该页后面的页面在数组中的位置前移,而缺页就放在数组后面。-basic algorithm thinking OPT : The basic idea of the algorithm is a two-dimensional array page2 [40] [2], the first storage pages loaded into memory, and the second for the markers out counter. Whenever there are missing pages, from memory a redeployment, the first memory pages on January 1 and transferred to the memory page after page, two pages, if not equal, then the corresponding memory pages marked increase a bit counter, until the equivalent of a page, the page more stop and then to repeat the operation, until the memory of all the pages compared End. Then find memory pages marking the largest-page, the page is to the replacement page. FIFO : The basic idea of the algorithm is used queue queue storage memory pages, and the queue is FIFO features, and the algorithm is the same, so whe
Update : 2024-05-16 Size : 26624 Publisher : 何泽荣

页面置换算法,采用了FIFO,LRU,OPT三种算法,并用一个源程序-pages replacement algorithm, using the FIFO, the LRU, OPT three algorithms, and with a source
Update : 2024-05-16 Size : 6144 Publisher : 鬼迷心窍

DL : 0
演示了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 generate random instruction sequences, and then converted into the corresponding page addresses flow.
Update : 2024-05-16 Size : 2048 Publisher : 衣明玉

DL : 0
任务 设计一个虚拟存储区和内存工作区,并使用下述算法计算访问命中率。 (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 the hit rate. (1) FIFO algorithm (FIFO) (2) at least recently used algorithm (LRU) (3) eliminated the best algorithm (OPT) (4) at least visit pages algorithm (LFU) (5) most recently used algorithm (NUR) life China rate = (1-pages failure number)/page-length addre
Update : 2024-05-16 Size : 2048 Publisher : 东方少秋

Simulation and Synthesis Techniques for Asynchronous FIFO Design
Update : 2024-05-16 Size : 120832 Publisher : 张卫

DL : 0
磁盘调度算法,包括先进先出,最短查找,电梯调度及单向扫描-disk scheduling algorithms, including FIFO, shortest identifying, scheduling and one-way lift scan
Update : 2024-05-16 Size : 2096128 Publisher : 翁明喆

DL : 0
功能强大的时钟中断,单片机和FIFO的接口和操作,单片机串口编程问题,纯软件单片机串口,串口通信的单片机程序,程序的多任务和资源复用举例,采用软件定时的计算方法-powerful clock interruption, the 8031 and FIFO interface and operation, the 8031 serial programming, software-only MCU, the MCU serial communication procedures, the procedures for multi-task and resource reuse, for example, regularly use the software method of calculation
Update : 2024-05-16 Size : 17408 Publisher : 王胜

DSP做的视频处理系统中FIFO问题解答-DSP video processing system FIFO Questions
Update : 2024-05-16 Size : 3072 Publisher : 陈旭

内有波形发生器,加法器,经典双进程状态机,伪随机熟产生器,相应加法器的测试向量,16×8bit RAM,FIFO,通用RAM等源程序-within waveform generator, Adder, classic dual-process state machine, cooked pseudo-random generator, the corresponding Adder test vector, 16 x 8bit RAM, FIFO, etc. source generic RAM
Update : 2024-05-16 Size : 45056 Publisher : 蔡孟颖

先进先出置换页面算法的程序实现 进程执行程序时要访问的...先进先出置换算法FIFO 最近最少使用置换算法LRU 最近未使用置换算法NUR 工作集. ...例:某进程分配页架数为3,其运行期间页面访问序列:A,B,C,D,A,B,E,A,B,C,D,E,分析其按照OPT算法进行页面置换时的缺... -FIFO replacement pages algorithm program implementation process procedures ... to visit the FIFO replacement algorithm using FIFO recently, at least recently LRU algorithm replacement unused replacement algorithm sets NUR work. Cases ... : a page-allocation process at 3, p. during its operation visit face sequence : A, B, C, D, A, B, E, A, B, C, D, E, in accordance with the analysis of its OPT algorithm replacement of pages missing ...
Update : 2024-05-16 Size : 5120 Publisher : asdf

分别实现最佳置换算法(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.
Update : 2024-05-16 Size : 3072 Publisher : asdf

本软件设计的目的是: 通过编写程序,将操作系统部算法以可视化的方式模拟出来,最终达到对这些算法有一个比深的理解。 本软件演示的算法有: 多种资源的银行家算法 可变分区存储算法 生产者——消费者(PV操作模拟) FIFO算法和LRU算法(页面淘汰算法) 请求分页算法 CUP——I/0利用率分析 开发工具: Delphi 7.0 -The software is designed to : develop procedures of the operating system to the Department of algorithm visualization of simulation, and eventually to these algorithms over a deep understanding. The demonstration software algorithms : a variety of resources through variable algorithm bankers storage algorithm producers-- consumers (PV simulated operational) FIFO algorithm and LRU algorithm (pages out of algorithm) algorithm CUP request Pagination-- I/0 utilization analysis of development tools : Delphi 7 .0
Update : 2024-05-16 Size : 1326080 Publisher : 刀尖

java编的两种算法,word写的,看不懂,大家帮忙-java series of the two algorithms, write the word, fail to understand, we look at the help
Update : 2024-05-16 Size : 5120 Publisher : 刘刚

FIFO先入先出堆栈,包括三个子程序,可根据需要选择-FIFO first in-first stack, including three subprogram, according to choose
Update : 2024-05-16 Size : 4096 Publisher : 陈正一

在linux下使用C语言开发的进程控制程序-the use of C language development process control procedures
Update : 2024-05-16 Size : 1024 Publisher : 鲍勃

进程调度:模拟最高优先级优先调度方式和FIFO调度方式.显示每个时间片各进程的PCB.即优先级,状态,访问CPU次数.剩于数-process scheduling : Analog highest priority priority scheduling ways and means FIFO scheduling. Each time film shows the process of the PCB. That is, priority, status, visit the CPU frequency. A few leftovers
Update : 2024-05-16 Size : 236544 Publisher : 杨场鸿

DL : 0
页面置换算法的演示程序及代码,包含FIFO、LRU、OPT算法-pages replacement algorithm code and demo program, including FIFO, the LRU, OPT algorithm
Update : 2024-05-16 Size : 1666048 Publisher : 陶杰

模拟实现以下页面置换算法,并计算其命中率: 一、理想置换算法OPT(Optimal Replacemnet) 二、先进先出置换算法FIFO-Simulation following pages replacement algorithms, and calculate their hit rate : 1. OPT ideal replacement algorithm (Optimal Replacement) 2. FIFO replacement algorithm FIFO
Update : 2024-05-16 Size : 193536 Publisher : 康抗

课程实验,自己做的一个关于请求分布的程序, 采用先进先出算法(FIFO)和最近最久未使用算法(LRU)进行页面的置换-courses experiments done on the request of a distribution procedures, FIFO-algorithm (FIFO) and the most recent time on the use of algorithms (LRU) page replacement
Update : 2024-05-16 Size : 360448 Publisher : 陈任全
« 1 2 ... 8 9 10 11 12 1314 15 16 17 18 ... 50 »
DSSZ is the largest source code store in internet!
Contact us :
1999-2046 DSSZ All Rights Reserved.