CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 高响应比优先算法

搜索资源列表

  1. gxyb

    0下载:
  2. 用C实现简单的高响应比优先调度算法的模拟,将模拟进程运行的结果显示出来。假设刚开始时有5个进程处于就绪状态,要求用高响应比优先调度算法为这些进程分配处理机。
  3. 所属分类:其它

    • 发布日期:2014-01-17
    • 文件大小:1.09kb
    • 提供者:cm
  1. jincheng

    0下载:
  2. 基本上实现处理机对进程的最主要的调度执行算法:包括先来先服务、短作业/进程优先、时间片轮转调度算法、优先权调度算法、高响应比优先调度算法、多级反馈队列调度算法等算法。
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:48.65kb
    • 提供者:wf
  1. ZYDD.rar

    1下载:
  2. 先来先服务(FCFS)算法、短作业优先(SJF)算法、高响应比(HRN)算法和高优先权算法来实现作业调度算法的模拟。 (1) 算法采用下式计算响应比: 等待时间waittime 需要运行时间requesttime (2) 高优先权算法采用下述公式计算优先权: 优先权priority*等待时间waittime 需要运行时间requesttime*紧迫程度quick ,First Come First
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:132.89kb
    • 提供者:hghh
  1. processor-scheduling

    1下载:
  2. C++编写的处理机调度程序,包括先来先服务算法,短作业优先算法,高响应比优先调度算法。-Written in C++ Processor scheduler, including the first-come, first serve algorithm, short job first algorithm, priority scheduling algorithm with high response ratio.
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:2.33kb
    • 提供者:xiaohe
  1. cao

    0下载:
  2. 有关操作系统的代码,是关于高响应比优先算法的,不知能不能用-On the operating system code, is a high response ratio on the priority scheduling algorithm, I do not know can not
  3. 所属分类:OS Develop

    • 发布日期:2017-04-01
    • 文件大小:820byte
    • 提供者:舒舒
  1. frm_gaoXY

    0下载:
  2. 计算机操作系统之高响应比优先算法,开发环境为VB,做成了一个交互性。-Computer operating system in response to more than a high priority algorithm development environment for VB, created a interactive.
  3. 所属分类:OS Develop

    • 发布日期:2017-04-06
    • 文件大小:1.6kb
    • 提供者:XJQ
  1. feng

    0下载:
  2. 作业调度系统的实现,先来先服务算法,多作业优先算法,高响应比优先算法-Job Scheduling System, first-come first-serve algorithm, multi-operation priority algorithm, high priority response ratio algorithm
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:605.12kb
    • 提供者:飓风
  1. os-1

    0下载:
  2. 操作系统实验1,进程调度实验本实验模拟单处理器系统的进程调度,加深对进程的概念及进程调度算法的理解。用某种语言编写和调试一个进程调度的算法程序,有一些简单的界面,能够运行,仿真操作系统中进程调度的原理和过程。进程调度要求使用高响应比优先的动态优先级调度算法。-Operating system in Experiment 1, the process of scheduling experiments in this experiment simulated the process single-
  3. 所属分类:OS Develop

    • 发布日期:2017-04-01
    • 文件大小:776byte
    • 提供者:华博
  1. jmmP

    0下载:
  2. 实现处理机模拟调度算法,四种进程调度算法,先进先出算法,短作业优先算法,高响应比优先算法,时间片算法-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
  3. 所属分类:OS Develop

    • 发布日期:2017-05-15
    • 文件大小:3.67mb
    • 提供者:夏雨
  1. jinchengdiaodu

    0下载:
  2. 非抢占高响应比优先调度算法实现进程调度,包括进程名称,进程运行总时间,进程进入就绪队列时间,进程已运行时间。-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
  3. 所属分类:Windows Kernel

    • 发布日期:2017-05-14
    • 文件大小:3.35mb
    • 提供者:wanghuahua
  1. a

    0下载:
  2. 用c++编写和调试一个进程调度的算法程序,能够运行,仿真操作系统中进程调度的原理和过程。进程调度要求使用高响应比优先的动态优先级调度算法。-failed to translate
  3. 所属分类:OS Develop

    • 发布日期:2017-04-04
    • 文件大小:576byte
    • 提供者:杨阳
  1. Job

    0下载:
  2. 操作系统课程设计:单道系统三种作业调度算法模拟 ○1、在数据结构上选择单向链队,即后备作业队列的每个结点表示一个作业块,每个作业块即JCB包含如下信息:作业名,到达时间,所需时间,已运行时间,作业状态,所需主存大小,所需磁带机数目。 ○2、提交新作业时,调用函数EnQueue(m_JobName,m_NeedTime)即将作业插入到后备作业队列的末尾。接着判断内存作业队列是否为空,若为空则将后备作业调入内存运行并启动计时器SetTimer(1,1000,NULL),更新列表框控件的信息的
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-05
    • 文件大小:287.96kb
    • 提供者:何启明
  1. ProcessScheduling

    0下载:
  2. 操作系统的进程调度算法模拟,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
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-08
    • 文件大小:1.9mb
    • 提供者:Meihua
  1. hrrn

    0下载:
  2. 操作系统 进程调度算法 高响应比优先调度-Operating system process scheduling priority higher than the response
  3. 所属分类:OS Develop

    • 发布日期:2017-03-27
    • 文件大小:1.24kb
    • 提供者:Sandy
  1. Test

    0下载:
  2. 调度算法。包换先来先服务、高响应比优先、多级反馈队列调度、短作业优先等等。-Scheduling algorithm
  3. 所属分类:Other systems

    • 发布日期:2017-04-14
    • 文件大小:4.31kb
    • 提供者:范渊
  1. HRF

    0下载:
  2. 操作系统-高响应比优先算法,自己写的,保证运行-Operating system- high response than the first algorithm, write their own to ensure the run
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-11
    • 文件大小:1.19kb
    • 提供者:ruirui
  1. the-process-of-scheduling-algorithm-

    0下载:
  2. 进程调度算法,包括先来先服务,短进程优先,高响应比优先,时间片轮转调度,优先级调度算法,-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
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:1.08mb
    • 提供者:殷学廉
  1. diaodu

    0下载:
  2. 操作系统的进程调度算法,有先来先服务算法,短作业优先算法,高响应比优先算法。-Operating system process scheduling algorithms, first-come first-serve algorithm, short job first algorithm, high response than the first algorithm.
  3. 所属分类:OS Develop

    • 发布日期:2017-11-17
    • 文件大小:11.78kb
    • 提供者:何秀丽
  1. 作业调度

    0下载:
  2. 作业调度应用实例,包括先到先处理算法、高响应比优先算法等。(Examples of job scheduling applications include first in first processing algorithms, higher response ratio first algorithms, and so on.)
  3. 所属分类:Windows编程

    • 发布日期:2017-12-25
    • 文件大小:292kb
    • 提供者:760008522
  1. HRRN

    0下载:
  2. 高响应比优先算法的简单模拟。可以改成由键盘输入要模拟的进程数量。(A simple simulation of HRRN.)
  3. 所属分类:操作系统开发

    • 发布日期:2018-04-19
    • 文件大小:2.38mb
    • 提供者:Haku_Akitsuki
« 12 3 »
搜珍网 www.dssz.com