搜索资源列表
gxyb
- 用C实现简单的高响应比优先调度算法的模拟,将模拟进程运行的结果显示出来。假设刚开始时有5个进程处于就绪状态,要求用高响应比优先调度算法为这些进程分配处理机。
jincheng
- 基本上实现处理机对进程的最主要的调度执行算法:包括先来先服务、短作业/进程优先、时间片轮转调度算法、优先权调度算法、高响应比优先调度算法、多级反馈队列调度算法等算法。
ZYDD.rar
- 先来先服务(FCFS)算法、短作业优先(SJF)算法、高响应比(HRN)算法和高优先权算法来实现作业调度算法的模拟。 (1) 算法采用下式计算响应比: 等待时间waittime 需要运行时间requesttime (2) 高优先权算法采用下述公式计算优先权: 优先权priority*等待时间waittime 需要运行时间requesttime*紧迫程度quick ,First Come First
processor-scheduling
- C++编写的处理机调度程序,包括先来先服务算法,短作业优先算法,高响应比优先调度算法。-Written in C++ Processor scheduler, including the first-come, first serve algorithm, short job first algorithm, priority scheduling algorithm with high response ratio.
cao
- 有关操作系统的代码,是关于高响应比优先算法的,不知能不能用-On the operating system code, is a high response ratio on the priority scheduling algorithm, I do not know can not
frm_gaoXY
- 计算机操作系统之高响应比优先算法,开发环境为VB,做成了一个交互性。-Computer operating system in response to more than a high priority algorithm development environment for VB, created a interactive.
feng
- 作业调度系统的实现,先来先服务算法,多作业优先算法,高响应比优先算法-Job Scheduling System, first-come first-serve algorithm, multi-operation priority algorithm, high priority response ratio algorithm
os-1
- 操作系统实验1,进程调度实验本实验模拟单处理器系统的进程调度,加深对进程的概念及进程调度算法的理解。用某种语言编写和调试一个进程调度的算法程序,有一些简单的界面,能够运行,仿真操作系统中进程调度的原理和过程。进程调度要求使用高响应比优先的动态优先级调度算法。-Operating system in Experiment 1, the process of scheduling experiments in this experiment simulated the process single-
jmmP
- 实现处理机模拟调度算法,四种进程调度算法,先进先出算法,短作业优先算法,高响应比优先算法,时间片算法-Scheduling algorithm to achieve processor simulation, four kinds of process scheduling algorithm, FIFO algorithm, the short job first algorithm, a high response ratio of priority algorithms, time sli
jinchengdiaodu
- 非抢占高响应比优先调度算法实现进程调度,包括进程名称,进程运行总时间,进程进入就绪队列时间,进程已运行时间。-High ratio of non-preemptive priority scheduling algorithm to respond to the process of scheduling, including the process name, the total running time of the process, the process into the ready q
a
- 用c++编写和调试一个进程调度的算法程序,能够运行,仿真操作系统中进程调度的原理和过程。进程调度要求使用高响应比优先的动态优先级调度算法。-failed to translate
Job
- 操作系统课程设计:单道系统三种作业调度算法模拟 ○1、在数据结构上选择单向链队,即后备作业队列的每个结点表示一个作业块,每个作业块即JCB包含如下信息:作业名,到达时间,所需时间,已运行时间,作业状态,所需主存大小,所需磁带机数目。 ○2、提交新作业时,调用函数EnQueue(m_JobName,m_NeedTime)即将作业插入到后备作业队列的末尾。接着判断内存作业队列是否为空,若为空则将后备作业调入内存运行并启动计时器SetTimer(1,1000,NULL),更新列表框控件的信息的
ProcessScheduling
- 操作系统的进程调度算法模拟,FCFS、SJF、高响应比优先,基于MFC对话框,可动态显示就绪队列和当前执行进程-Operating system process scheduling algorithm simulation, FCFS, SJF, high priority response ratio, based on MFC dialog box, you can dynamically display the ready queue and the current implementa
hrrn
- 操作系统 进程调度算法 高响应比优先调度-Operating system process scheduling priority higher than the response
Test
- 调度算法。包换先来先服务、高响应比优先、多级反馈队列调度、短作业优先等等。-Scheduling algorithm
HRF
- 操作系统-高响应比优先算法,自己写的,保证运行-Operating system- high response than the first algorithm, write their own to ensure the run
the-process-of-scheduling-algorithm-
- 进程调度算法,包括先来先服务,短进程优先,高响应比优先,时间片轮转调度,优先级调度算法,-Process scheduling algorithms, including the first come first served, short process priority, high-response than the priority, round-robin scheduling, priority scheduling algorithm, the process of scheduli
diaodu
- 操作系统的进程调度算法,有先来先服务算法,短作业优先算法,高响应比优先算法。-Operating system process scheduling algorithms, first-come first-serve algorithm, short job first algorithm, high response than the first algorithm.
作业调度
- 作业调度应用实例,包括先到先处理算法、高响应比优先算法等。(Examples of job scheduling applications include first in first processing algorithms, higher response ratio first algorithms, and so on.)
HRRN
- 高响应比优先算法的简单模拟。可以改成由键盘输入要模拟的进程数量。(A simple simulation of HRRN.)