搜索资源列表
操作系统部分算法模拟软件
- 本软件设计的目的是: 通过编写程序,将操作系统部算法以可视化的方式模拟出来,最终达到对这些算法有一个比深的理解。 本软件演示的算法有: 多种资源的银行家算法 可变分区存储算法 生产者——消费者(PV操作模拟) FIFO算法和LRU算法(页面淘汰算法) 请求分页算法 CUP——I/0利用率分析 开发工具: Delphi 7.0 -The software is designed to : develop procedures of the opera
Memory.FIFO
- 操作系统中的 内存管理 FIFO算法模拟-OS FIFO memory management algorithm simulation
操作系统算法
- 操作系统中的先进先出,最佳淘汰等算法的比较。-the FIFO operating system, such as the best out of the comparison algorithm.
页面置换算法(FIFO和LRU)
- 模拟操作系统虚拟存储中的页面置换算法采用FIFO算法和LRU算法-simulation operating system virtual memory pages the algorithm used FIFO replacement algorithm and LRU algorithm
FIFO
- 大学生计算机操作系统课程设计,实现页面置换,利用fifo(先进先出)算法-Students of computer operating systems curriculum design, the realization of the page replacement, the use of fifo (FIFO) algorithm
FIFO
- 针对操作系统试验编程,实现fifo操作,可手动输入-Pilot program for the operating system to achieve fifo operation, can be manually input
process
- 为了更充分的利用CPU,必须管理好进程内及进程间的调度关系,此实验就是模拟进程之间的调度方法。在实验中,只模拟了3个状态之间的调度过程,为了便于观察调度过程,我采用手动操作方式(即根据操作者输入的命令来做相应的转换)。在程序中,为进程建议一个结构体,以这种类型建立一个数组,用了存储所有进程信息;同时建议了两个先进先出的对列(ready,blocked)用来存储当前就绪的进程和等待资源的进程(在程序中这两个队列只是存储了进程在存储进程的数组的下标,用下标来作为唯一标识且访问,但是不是pid)。对列
caozuoxitong
- 操作系统 先进先出算法的大型作业报告 FIFO-FIFO algorithm is operating a large-scale operational reporting FIFO
dispatch
- 操作系统FIFO和LRU算法实现(C) FIFO用队列实现,LRU用计数器实现-FIFO and LRU algorithms operating system (C)
FIFO
- 操作系统必做实验之一,虽然很简单,但是很实用,FIFO调度算法样例-One of the experiments will make the operating system, although very simple, but very practical, FIFO scheduling algorithm sample
fifo
- 完成进程调度,页面置换算法中先进先出算法(FIFO)的源代码,对学习操作系统很有用的~-The completion of the process of scheduling, the page replacement algorithm in the FIFO method (FIFO) of the source code, useful for learning the operating system ~
FIFO
- 在分页式虚拟存储系统中,当硬件发出“缺页中断”后,引出操作系统来处理这个中断事件。如果主存中已经没有空闲块,则可用FIFO页面调度算法把该作业中最先进入主存的一页调出,存放到磁盘上。然后再把当前要访问的页装入该块。调出和装入后都要修改页表中对应页的标志。 FIFO页面调度算法总是淘汰该作业中最先进入主存的那一页,因此可以用一个数组来表示该作业已在主存的页面。-In the paging virtual memory system, when the hardware was given a
FIFO-Ver2
- 在VC环境下模拟操作系统的FIFO页式内存管理的实例-VC environment in the operating system simulation-style FIFO memory management example page
FIFO
- 操作系统中用来描述CPU处理进程的方式,这是最简单的一种先来先到算法-The operating system is used to describe the process of the CPU processing mode, which is the most simple one first-come, first algorithm
FIFO
- 先进先出算法编程,控制台程序,操作系统上面的算法-FIFO algorithm programming, console applications, operating systems, the above algorithm
FIFO
- 先来先服务算法,操作系统的重要内容-First-come, first-serve algorithm, an important part of the operating system
algorithms
- 操作系统FIFO和ALU算法,用C++实现,利用算法对内存管理进行运算-the application of FIFO and ALU algorithms in OS
FIFO
- 操作系统中的FIFO算法,使用时请输入文件夹中的data.txt-FIFO algorithm operating system when using please enter folder data.txt
opt fifo lru
- 调页存储管理,使用opt,lru,fifo三种(Page storage management, using the three kinds of OPT, LRU, FIFO)
FIFO先进先出调度算法(含代码截图)
- 最简单的分页替换算法就是先进先出算法,当每次有新的分页需要调入时,会选择调入内存时间最久的分页换出。有两种实现的方法:第一种是记录每个分页被调入到页框的时间,当每次需要换出分页时,会找到调入时间最早的一页,也就是在主存储器中存在最久的分页。另外一种方式就是利用FIFO队列来实现,当要进行分页替换时,就把队列最前端的分页换出,再把要调入的分页放到队列的末端。(The simplest paging replacement algorithm is the first in first out al