CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 先来先服务算法

搜索资源列表

  1. jincheng

    0下载:
  2. 才用最高优先数优先的调度算法(即把处理机分配给优先数最高的进程)和先来先服务算法-Only the highest priority with a number of priority scheduling algorithm (that is, the number of processors allocated to the highest priority of the process) and the first-come first-serve algorithm
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-06
    • 文件大小:1256
    • 提供者:谭仲
  1. frmxian

    0下载:
  2. 计算机操作系统的先来先服务算法交互式算法模拟演示-Computer operating system, first-come first-serve algorithm simulated interactive demonstration algorithm
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-04
    • 文件大小:1661
    • 提供者:XJQ
  1. cpdu

    0下载:
  2. 磁盘调度算法,包括、先来先服务算法(FCFS) 2、最短寻道时间优先算法(SSTF) 3、扫描算法(SCAN) 4、循环扫描算法(CSCAN) -Disk scheduling algorithms, including, first-come first-serve algorithm (FCFS) 2, the shortest seek time priority algorithms (SSTF) 3, scanning method (SCAN) 4, cycle sc
  3. 所属分类:Windows Develop

    • 发布日期:2015-09-17
    • 文件大小:169653
    • 提供者:流水
  1. ZYDD1

    0下载:
  2. 先来先服务算法(FCFS),短作业算法(SJF),高响应比算法(HRN)和高优先权优先算法是作业调度总经常采用的,通过上述算法的模拟加深对作业控制块JCB的理解和作业调度过程的实现技巧。-First-come first-serve algorithm (FCFS), a short operating algorithm (SJF), a high response ratio algorithm (HRN) and high-priority priority scheduling algo
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-28
    • 文件大小:130414
    • 提供者:hghh
  1. cpdd

    0下载:
  2. 设计五个算法,分别是先来先服务算法,最短寻道时间优先算法,扫描(SCAN)算法,循环扫描(CSCAN)算法,NStepSCAN算法.由人工输入当前的磁道数,由系统随即生成要访问的磁道-The design of the five algorithms, namely, first-come first-serve algorithm, the shortest seek time priority algorithm, scanning (SCAN) algorithm, scanning cy
  3. 所属分类:OS Develop

    • 发布日期:2017-03-30
    • 文件大小:3329
    • 提供者:uuwei
  1. fistin

    0下载:
  2. 操作系统先来先服务算法实现进程的先来先服务-Operating system first-come first-serve algorithm process first-come, first serve
  3. 所属分类:OS Develop

    • 发布日期:2017-04-05
    • 文件大小:893
    • 提供者:xuling
  1. 1esxddsd

    0下载:
  2. 操作系统进程调度采用时间轮片及先来先服务算法-Operating system process scheduling and time-round film and first-come first-serve algorithm
  3. 所属分类:Document

    • 发布日期:2017-04-10
    • 文件大小:1477
    • 提供者:xiaogong
  1. ProcessSched

    0下载:
  2. 用VB模拟实现几种常用进程调度算法,如先来先服务,时间片轮转等。动画显示做得不错。-My student has developed a process scheduling simulator with VB, which has showed the priciple of FIFS, RR etc. Wonderful job.
  3. 所属分类:OS Develop

    • 发布日期:2017-04-02
    • 文件大小:387740
    • 提供者:fzz
  1. cipandiaodu

    0下载:
  2. 磁盘调度设计,磁盘调度算法的实现,包括  先来先服务调度算法  最短寻道优先调度算法  扫描算法  循环扫描算法  N—Step—SCAN算法 -SSTF
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:3233
    • 提供者:江鹏远
  1. diskschedulingalgorithmsourcecode

    0下载:
  2. 在我们学习的过程中共遇见5种磁盘调度算法它们分别是: FCFS(先来先服务)调度 SSTF(最短查找时间优先)调度 SCAN(扫描)调度 C-SCAN(环形扫描)调度 LOOK(查找)调度(电梯) -disk scheduling algorithm source code
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:672970
    • 提供者:cjw
  1. 1213

    0下载:
  2. 作业调度---实验报告 一、实验目的: 本实验要求用高级语言(C语言实验环境)编写和调试一个或多个作业调度的模拟程序,了解作业调度在操作系统中的作用,以加深对作业调度算法的理解 二、实验内容: 1、编写并调试一个单道处理系统的作业等待模拟程序。(必做) 作业调度算法: 分别采用先来先服务(FCFS),最短作业优先(SJF)、响应比高者优先(HRN)的调度算法。 (1)先来先服务算法:按照作业提交给系统的先后顺序来挑选作业,先提交的先被挑选。  (2)最短作业
  3. 所属分类:assembly language

    • 发布日期:2017-05-02
    • 文件大小:720826
    • 提供者:刘生
  1. shortwork

    0下载:
  2. 1) 设计可用于该实验的作业控制块; 2) 动态或静态创建多个作业; 3) 模拟先来先服务调度算法和短作业优先调度算法。 4) 调度所创建的作业并显示调度结果(要求至少显示出各作业的到达时间,服务时间,开始时间,完成时间,周转时间和带权周转时间); 5) 比较两种调度算法的优劣。 -shortwork
  3. 所属分类:OS Develop

    • 发布日期:2017-04-10
    • 文件大小:993
    • 提供者:waiting1314
  1. shijianplunzhuan

    0下载:
  2. 进程调度算法:先来先服务算法、时间片轮转调度算法的实现 -The process of scheduling algorithms: first-come, first-served algorithm, time slice Round Robin Scheduling Algorithm
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-30
    • 文件大小:2266
    • 提供者:ZZ
  1. jinchengdiaodu

    0下载:
  2. 模拟进程调度算法,用先来先服务算法进行调度。-Simulate the process of scheduling, first-come first-served scheduling algorithm.
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:1363
    • 提供者:张驰
  1. jinchengdiaodu2

    0下载:
  2. 进程调度算法,使用类做的先来先服务算法进行调度-Process scheduling algorithm, using the class to do a first-come first-served scheduling algorithm
  3. 所属分类:Other systems

    • 发布日期:2017-03-26
    • 文件大小:1405
    • 提供者:张驰
  1. LinuxCFCFS

    0下载:
  2. 在Linux下用C语言实现作业调度的先来先服务算法-In Linux,use C to compile the FCFS algorithm
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-03
    • 文件大小:948
    • 提供者:李顺前
  1. a1

    0下载:
  2. 磁盘调度算法:包括先来先服务算法,最短寻道时间算法,电梯寻道算法。-Disk scheduling algorithms: including a first-come first-served algorithm, the shortest seek time algorithm, elevator seek algorithm.
  3. 所属分类:OS Develop

    • 发布日期:2017-03-31
    • 文件大小:1048
    • 提供者:lzh
  1. Scheduling

    2下载:
  2. 用C#和C++实现的进程调度算法程序(操作系统实验)本实验通过编写C#语言的代码实现先来先服务(FCFS),最短作业优先(SJF)、响应比高者优先(HRN)的调度算法。最后在界面上显示出进程在调度过程中的情况。另附上C++的进程调度实验,算法不相同。-Use C# and C++ to build up a project to achieve process scheduling.The project contains the algorithm of FCFS,SJF and HRN.
  3. 所属分类:CSharp

    • 发布日期:2016-01-25
    • 文件大小:21406
    • 提供者:
  1. choose

    0下载:
  2. 先来先服务算法(FCFS)最短寻道时间优先算法(SSTF)并求出每种算法的平均寻道长度-First-come, first-served algorithms (FCFS) algorithm for the shortest seek time first (SSTF) and find the length of each algorithm, the average seek
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-23
    • 文件大小:1432
    • 提供者:高飞
  1. FCFS

    0下载:
  2. 操作系统中先来先服务算法的实现,采用了五个进程的进入堆栈的顺序性原则,并且采用可视化效果,便于理解。-FCFS in the Operating System ,that is to say first come first service!
  3. 所属分类:OS Develop

    • 发布日期:2017-04-05
    • 文件大小:917
    • 提供者:李刚
« 1 2 3 45 6 7 8 9 10 ... 18 »
搜珍网 www.dssz.com