CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 其他小程序 搜索资源 - 先来先服务 调度 算法

搜索资源列表

  1. processdoing.rar

    0下载:
  2. 操作系统中进程调度算法的模拟 可以实现先来先服务 短作业有限 和时间片轮转算法,Operating system scheduling algorithm in the simulation process can be achieved first-come first-serve limited and short operating time slice Round Robin
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:1.6kb
    • 提供者:zhou
  1. pcb

    0下载:
  2. 设计一个有 N个进程并行的进程调度程序,采用最高优先数优先的调度算法(即把处理机分配给优先数最高的进程)和先来先服务算法.-Design of a parallel process, N a process scheduler, using the highest priority number of priority scheduling algorithm (ie the number of processors allocated to the highest priority to th
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-25
    • 文件大小:108.82kb
    • 提供者:魏忠祥
  1. Job

    0下载:
  2. 设计要求模拟实现一个的单道批处理系统环境下的作业调度程序。通过实现具体的作业调度算法,加深对该环境下的作业调度模型和实现过程的理解。 至少实现有三种的作业调度算法:先来先服务、短作业优先和响应比优先算法-Design requirements for the realization of a simulation of the single-channel system environment under a batch job scheduling procedures. Through th
  3. 所属分类:Other systems

    • 发布日期:2017-05-09
    • 文件大小:1.86mb
    • 提供者:段崖崖
  1. duodao

    0下载:
  2. 编写并调度一个多道程序系统的作业调度模拟程序。   作业调度算法:采用基于先来先服务的调度算法。 -Road to prepare and dispatch a multi-program system for job scheduling simulation program. Job scheduling algorithms: a first-come, first-served based on the scheduling algorithm.
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-28
    • 文件大小:1.42kb
    • 提供者:sylvia
  1. service

    0下载:
  2. 这是一个模拟进程的先来先服务的进程调度算法-Process, the process of first come first serve scheduling algorithm
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-31
    • 文件大小:1.42kb
    • 提供者:王小方
  1. job

    0下载:
  2. 对于给定的一组作业, 给出其到达时间和运行时间分别用先来先服务算法、短作业优先和响应比高者优先三种算法给出作业的调度顺序。计算每一种算法的平均周转时间及平均带权周转时间并比较不同算法的优劣。 -For a given set of operations, given its arrival time and run time were used to first come first served method, short job priority and response than th
  3. 所属分类:Other systems

    • 发布日期:2017-04-06
    • 文件大小:1.79kb
    • 提供者:sunzhiyu
  1. cpdd

    0下载:
  2. 通过设计一个磁盘调度模拟系统,从而使磁盘调度算法更加形象化,容易使人理解,使磁盘调度的特点更简单明了,能使使用者加深对先来先服务算法、最短寻道时间优先算法、扫描算法以及循环扫描算法等磁盘调度算法的理解。-here is my code
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-28
    • 文件大小:1.78kb
    • 提供者:heiming
  1. FCFS

    0下载:
  2. 进程调度问题 模拟先来先服务调度算法或者短作业调度算法,要求可以自动产生或者手动输入若干进程的名字、到达时间、运行时间; 响应键盘模拟时间片流逝,输出中间每个进程的运行状态,最后产生完成时间、周转时间、带权周转时间的汇总清单。 -Process scheduling simulation of FCFS scheduling algorithm, or short-scheduling algorithm, requests can be automatically generated
  3. 所属分类:Other systems

    • 发布日期:2017-04-05
    • 文件大小:1.29kb
    • 提供者:马月
  1. 2

    0下载:
  2. 采用先来先服务(FCFS),最短作业优先(SJF)、响应比高者优先(HRN)的调度算法对输入进程进行调度;-Using the first come first served (FCFS), shortest job first (SJF), respond to than high preferred (HRN) scheduling algorithm for scheduling the input process
  3. 所属分类:Other systems

    • 发布日期:2017-04-13
    • 文件大小:1.76kb
    • 提供者:吗瑞
  1. First-come-first-service

    0下载:
  2.  先来先服务,抢占式进程。 模拟进程调度,能够处理以下的情形:    ⑴ 能够选择不同的调度算法(要求中给出的调度算法);    ⑵ 能够输入进程的基本信息,如进程名、到达时间和运行时间等;    ⑶ 根据选择的调度算法显示进程调度队列; ⑷ 根据选择的调度算法计算平均周转时间和平均带权周转时间。-First-come, first-served preemptive process. Analog process scheduling, able to handle the
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-15
    • 文件大小:2.1kb
    • 提供者:Shaojie Kang
  1. FCFS.rar

    0下载:
  2. 操作系统的进程调度,先来先服务算法,按进程到达的先后被CPU执行,The operating system process scheduling, first-come, first-served algorithm
  3. 所属分类:Other systems

    • 发布日期:2017-12-06
    • 文件大小:1.94mb
    • 提供者:smilefuture
  1. os5

    1下载:
  2. 通过在实验三阶段基础上,完成实现按先来先服务FCFS、短作业优先SJF以及时间片轮转算法调度进程的模拟过程,掌握进程调度算法的方法。-Completed on the basis of the experimental three-stage short operating priority SJF as well as round-robin the algorithm scheduling process simulation, first-come, first-served FCFS m
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-14
    • 文件大小:237.8kb
    • 提供者:lizhi
  1. fcfs-sjf

    0下载:
  2. 先来先服务FCFS和短作业优先SJF进程调度算法-First-come, first-served FCFS and short operating priority process scheduling algorithm SJF
  3. 所属分类:Other systems

    • 发布日期:2017-03-28
    • 文件大小:932.44kb
    • 提供者:雷丽楠
  1. esr

    0下载:
  2. 先来先服务算法,先来先服务算法完成进程调度模拟-First-come, first-serve algorithm, first-come first-serve algorithm to complete the process of scheduling simulation
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-17
    • 文件大小:62.76kb
    • 提供者:会将
  1. N-process-scheduling-design

    0下载:
  2. N个进程调度算法课程设计 先来先服务算法, 可抢占式调度(动态优先级调度)的算法, 非抢占式调度(静态优先级调度)算法, 短作业调度算法, 轮转式调度算法,-N process scheduling algorithm curriculum design
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-25
    • 文件大小:40.71kb
    • 提供者:sunrier
  1. FCFS-and-SJF

    0下载:
  2. 先来先服务FCFS和短作业优先SJF进程调度算法 有注释,简单明确-FCFS FCFS SJF process and short operating priority scheduling algorithm Notes, simple and clear
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:1.3kb
    • 提供者:吕梦楠
  1. 作业

    0下载:
  2. 单道环境下作业调度算法1、先来先服务算法2、最短作业优先算法3、最高响应比优先算法以及双道环境下的作业调度(In single channel environment, job scheduling algorithm 1, first come first service algorithm 2, shortest job first algorithm 3, highest response ratio priority algorithm and job scheduling in dua
  3. 所属分类:其他

  1. FCFS优化

    0下载:
  2. 操作系统调度算法 先来先服务 给大家参考一下(this is a code about fcfs very easy but useful)
  3. 所属分类:其他

    • 发布日期:2018-01-04
    • 文件大小:467kb
    • 提供者:求资源
  1. fcfs

    0下载:
  2. 先来先服务算法,操作系统作业调度,先来先服务(First come first served algorithm, operation system job scheduling, first come first served.)
  3. 所属分类:其他

    • 发布日期:2018-05-07
    • 文件大小:26kb
    • 提供者:xcy。
  1. 操作系统磁盘调度

    0下载:
  2. 该程序是在操作系统实训期间完成,能够实现先来先服务,扫描算法和循环扫描算法。既可以一条访盘序列用三个算法,也可以重新输入。
  3. 所属分类:其他小程序

« 12 »
搜珍网 www.dssz.com