CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 其它 操作系统开发 搜索资源 - response

搜索资源列表

  1. jobschdule

    0下载:
  2. 实现了操作系统作业调度算法中的先来先服务、短作业优先、优先权高者优先、响应比高者优先四种调度算法。-Operating system job scheduling algorithm first come first served, short job priority, the priority to high priority response than the high priority the four scheduling algorithms.
  3. 所属分类:OS Develop

    • 发布日期:2017-04-01
    • 文件大小:1587
    • 提供者:饭饭
  1. gaoxiangyingbi

    0下载:
  2. 操作系统高响应比的制作和应用 源代码和exe文件-the flie of The operating system than high response
  3. 所属分类:OS Develop

    • 发布日期:2017-05-04
    • 文件大小:1219225
    • 提供者:陈飞
  1. gaoxiangying

    0下载:
  2. 非抢占式高响应比算法调度,非常有用,运用可视化界面-Non-preemptive high-response algorithm for scheduling, very useful to use visual interface
  3. 所属分类:OS Develop

    • 发布日期:2017-04-10
    • 文件大小:1946708
    • 提供者:张婉婷
  1. gaoxiangyingbisuanfa

    0下载:
  2. 操作系统课设,高响应比算法的程序调度,能实现同步与互斥,能模拟进程在执行过程中的各种状态-The lesson of the operating system and high response than the program scheduling algorithm, to achieve synchronization and mutual exclusion can simulate the process of the various states in the implementat
  3. 所属分类:OS Develop

    • 发布日期:2017-05-19
    • 文件大小:5424492
    • 提供者:小桂
  1. job-scheduling

    0下载:
  2. 操作系统作业调度,包括单、多道批处理先来先服务算法,单、多道处理最短作业优先调度算法,单道批处理响应比高者优先调度算法-Operating system job scheduling, including single and multi-channel batch first-come, first-serve algorithm, single and multi-channel processing shortest job first scheduling algorithm, sing
  3. 所属分类:OS Develop

    • 发布日期:2017-11-07
    • 文件大小:432772
    • 提供者:潘宝
  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
    • 文件大小:12059
    • 提供者:何秀丽
  1. xianlaixianfuwu

    0下载:
  2. 进程调度算法模拟程序设计 实验内容 1、 可以用任何语言设计模拟的PCB结构 提示:应该包括模拟进程名称,模拟进程运行总时间,模拟进程进入就绪队列时间,模拟进程已运行时间,模拟进程状态,模拟响应比值。 2、 建立进程就绪队列 3、 编制高响应比优先调度算法实现进程调度的模拟过程 要求: (1) 在屏幕上模拟显示出正在执行的进程的执行情况以及处于就绪和阻塞状态的进程的情况 (2) 可以随时建立模拟进程; (3) 可以阻塞正在执行的模拟进程;可以唤醒阻塞的模拟进
  3. 所属分类:OS Develop

    • 发布日期:2017-11-11
    • 文件大小:3661076
    • 提供者:进林
  1. operating-system-scheduling-

    0下载:
  2. 五种操作系统调度的算法,包括先来先服务/轮转/最短剩余/最短响应比-Five kinds of operating system scheduling algorithms, including first-come, first-served/web/shortest remaining/shortest response ratio
  3. 所属分类:OS Develop

    • 发布日期:2017-04-16
    • 文件大小:314397
    • 提供者:kingsleyhsu
  1. OperationsManagement

    0下载:
  2. 操作系统作业调度算法,分别是先来先服务(FCFS),最短作业优先(SJF)、响应比高者优先(HRN)的调度算法-Operating system scheduling algorithms, which are first-come, first-served (FCFS), shortest job first (SJF), response to high priority (HRN) scheduling algorithm
  3. 所属分类:OS Develop

    • 发布日期:2017-04-06
    • 文件大小:2244
    • 提供者:大飞飞猪
  1. Job_Schedule

    0下载:
  2. 先来先服务,最短作业优先,最高响应比调度算法。-First come first served, shortest job first, the highest response ratio scheduling algorithm.
  3. 所属分类:OS Develop

    • 发布日期:2017-04-17
    • 文件大小:18721
    • 提供者:王娜
  1. task

    0下载:
  2. 操作系统课程设计,完整的MFC 工程源码 课程设计题目:进程/作业调度 实现要求: 1. 建立作业的数据结构描述 2. 使用两种方式产生作业/进程: (a)自动产生 (b)手工输入 3. 在屏幕上显示每个作业/进程的执行情况。 4. 时间的流逝可用下面几种方法模拟:(a)按键盘,每按一次可以认为过一个时间单位 (b)响应WM_TIMER (本实验采用b方法) 5. 计算并显示一批作业/进程的周转时间,平均周转时间,带权周转时间,平均带权周转时间。 6. 将一批作业
  3. 所属分类:OS Develop

    • 发布日期:2017-06-14
    • 文件大小:22191104
    • 提供者:singerlio
  1. scheduler

    0下载:
  2. VC++ 实现作业调度系统 作业调度方式有先来先服务调度方式(FCFS)、短作业优先调度算法(SJF)、响应比高者优先调度算法(HRRF)、优先权高者优先调度算法(HPF)、时间片轮转调度算法(TRR)。要求根据不同的调度方式实现不同的算法,用户使用不同的调度算法可得到不同的作业调度顺序。 -VC++ implement job scheduling job scheduling system has a first-come, first-served scheduling (FCFS
  3. 所属分类:OS Develop

    • 发布日期:2017-04-24
    • 文件大小:14971
    • 提供者:xinwuya
  1. OS

    0下载:
  2. 操作系统进程调度模拟实现算法,先到先服务调度(FCFS) 最短作业优先调度(SJF) 高响应比优先调度 (抢占式)优先权调度 时间片轮转调度-Operating system process scheduling simulation algorithm, first come first served scheduling (FCFS) Shortest job first scheduling (SJF) High priority response ratio sc
  3. 所属分类:OS Develop

    • 发布日期:2017-05-07
    • 文件大小:1092443
    • 提供者:庞清成
  1. HRN_wd

    0下载:
  2. 最高响应比作业调度,通过计算响应比确定其优先级判断作业调度的先后顺序。(The highest response ratio scheduling)
  3. 所属分类:操作系统开发

    • 发布日期:2018-01-09
    • 文件大小:237568
    • 提供者:Teee
« 1 2 3»
搜珍网 www.dssz.com