搜索资源列表
存储管理分区分配算法的源码
- 这是一个存储管理分区分配算法的源码,操作系统的-this is a source code of save the charge sectors,for operating system
内存回收算法
- 内存回收算法,一般学校计算机专业的操作系统课程设计内容.可以免费下载-Algrithms for memory recycle, the subject of the OS curriculum design for the computer department students of colleges.
操作系统实验报告
- 设计一个程序,根据不同的调度算法模拟操作系统对进程的调度。-Design a procedure , to the dispatcher of the process according to algorithm simulation operating systems of different dispatchers.
内存算法
- 内存分配算法,用c实现内存的管理分配,属于操作系统范畴-memory allocation algorithm, using c realization in the administration and distribution of memory, operating system areas
操作系统部分算法模拟软件
- 本软件设计的目的是: 通过编写程序,将操作系统部算法以可视化的方式模拟出来,最终达到对这些算法有一个比深的理解。 本软件演示的算法有: 多种资源的银行家算法 可变分区存储算法 生产者——消费者(PV操作模拟) FIFO算法和LRU算法(页面淘汰算法) 请求分页算法 CUP——I/0利用率分析 开发工具: Delphi 7.0 -The software is designed to : develop procedures of the opera
先来先服务算法
- 操作系统先来先服务算法和优先权调度算法模拟实验-operating system services first-come first-priority scheduling algorithm and simulation algorithm
我做的银行家算法
- 过一个学习《操作系统》课程的学习,掌握了许多书本上的知识,但是对书上的概念并没有真正意义的了解。这次课程设计,就是通过模拟银行家算法来避免死锁的产生,加深对进程死锁概念的理解。 .课程设计的要求 通过对银行家算法的模拟,用户输入进程跟资源的数目,再给每个进程的每个资源申请资源,用以判断进程是否会出现死锁,若出现死锁,就释放整个内存的资源,总而减轻操作系统的负担。 课程设计的题目 本次操作系统课程设计的题目为《模拟银行家算法》。-than a learning "syst
银行家算法1
- 这是一个关于操作系统银行家算法的程序,实现资源的各项操作-This is a banker's algorithm on the operating system procedures, the resources to operate
作业调度算法实现
- 这是一个关于作业调度和进程调度的算法实现,操作系统的试验程序!-This is one of the job scheduling and process scheduling algorithm, the operating system of testing procedures!
操作系统高响应比作业调度
- 操作系统作业调度源码,用的是高相应比算法-Job Scheduling-source operating system, with the corresponding high Algorithm
响应比高者优先算法
- 操作系统中的 响应比高者优先调度算法 计算响应时间,周转时间-operating system, the response is high priority scheduling algorithm for calculating response time, the turnaround time
操作系统算法
- 操作系统中的先进先出,最佳淘汰等算法的比较。-the FIFO operating system, such as the best out of the comparison algorithm.
os
- 操作系统算法的模拟实现,包括短作业优先,时间片等-os OSProcessAttemperSimulation0.4
银行家算法
- 实现了银行家算法,MFC界面编程,有需要可下载~(Banker's algorithm, MFC interface programming, there is a need to download ~!)
内存分配算法
- 内存分配模拟算法,FIFO和LRU算法模拟(Memory allocation simulation algorithm, FIFO and LRU algorithm simulation)
进程调度算法
- 模拟进程调度的过程,包括先到先得进程调度算法和RR轮转调度算法。(The process of simulating process scheduling, including the first to first process scheduling algorithm and the RR rotation scheduling algorithm.)
动态分区算法
- 直接打开visual c++ 6.0,支持在window2010打开。(Open visual c++ 6 directly, and support open at window2010.)
操作系统
- 置换算法,先进先出,在地址映射过程中,若在页面中发现所要访问的页面不在内存中,则产生缺页中断。当发生缺页中断时,如果操作系统内存中没有空闲页面,则操作系统必须在内存选择一个页面将其移出内存,以便为即将调入的页面让出空间。而用来选择淘汰哪一页的规则叫做页面置换算法。(In the process of address mapping, if page is found in the page, it is not in memory, resulting in page break. When t
操作系统实验报告
- 操作系统实验报告(进程调度,银行家算法,可变区分存储管理)(Operating system experiment report (process scheduling, banker algorithm, variable storage management))
FIFO先进先出调度算法(含代码截图)
- 最简单的分页替换算法就是先进先出算法,当每次有新的分页需要调入时,会选择调入内存时间最久的分页换出。有两种实现的方法:第一种是记录每个分页被调入到页框的时间,当每次需要换出分页时,会找到调入时间最早的一页,也就是在主存储器中存在最久的分页。另外一种方式就是利用FIFO队列来实现,当要进行分页替换时,就把队列最前端的分页换出,再把要调入的分页放到队列的末端。(The simplest paging replacement algorithm is the first in first out al