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

搜索资源列表

  1. DiskAtemper

    0下载:
  2. 这是一个关于计算磁盘调度的算法,包括最短优先,s-scan,fcfs等。-This is one on the calculation of disk scheduling algorithms, including the shortest first, s-scan, fcfs so.
  3. 所属分类:OS Develop

    • 发布日期:2017-04-05
    • 文件大小:1703
    • 提供者:ming
  1. 11

    0下载:
  2. 先进先出算法,根据先进先出对列来服务,设置了一个时间片-fcfs
  3. 所属分类:Other systems

    • 发布日期:2017-04-10
    • 文件大小:1136
    • 提供者:张龙
  1. zuoyediaoducaozuoxitong

    0下载:
  2. 作业等待算法:分别采用先来先服务(FCFS),最短作业优先(SJF)、响应比高者优先(HRN)的调度算法。-FCFS.SJF.HRRN
  3. 所属分类:OS Develop

    • 发布日期:2017-03-31
    • 文件大小:1972
    • 提供者:张驰
  1. MFC_scheduling_algorithm

    0下载:
  2. 操作系统中,四种CPU调度算法的演示:先进先出、动态优先级、时间片轮转法和多级反馈队列。-This program demonstrates four scheduling algorithms of CPU in the OS:FCFS、 DP、 RR&MLFQ
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-22
    • 文件大小:6732723
    • 提供者:liuxia
  1. tryexp3

    0下载:
  2. 作业调度算法的模拟实现 作业调度主要是完成作业从后备状态到执行状态的转变,以及从执行状态到完成状态的转变。 (1)创建JCB(作业控制块):系统在作业进入后备状态时为每个作业创建一个作业控制块(JCB),从而使该作业可被调度程序感知。当该作业执行完毕进入完成状态时候,系统自动撤销其JCB并释放有关资源,进而撤销该作业。 (2)按照作业调度算法,从后备队列中挑选一作业投入运行。作业调度程序为运行作业建立相应的进程,并分配资源。 (3)主要的作业调度算法包括:先来先服务(FCFS)
  3. 所属分类:OS Develop

    • 发布日期:2017-03-25
    • 文件大小:5219
    • 提供者:wg
  1. LinuxCFCFS

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

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

    0下载:
  2. 随机产生磁道数,通过多种算法实现磁盘调度。FCFS,SSTF,SCAN,CSCAN,N_Step_SCAN。-Track the number of randomly generated, through a variety of disk scheduling algorithm. FCFS, SSTF, SCAN, CSCAN, N_Step_SCAN.
  3. 所属分类:OS Develop

    • 发布日期:2017-03-30
    • 文件大小:3200
    • 提供者:lzh
  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. 1

    1下载:
  2. vc 6.0 进程调度算法的模拟,缺点是只实现一种调度-vc 6.0 FCFS SFS
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-28
    • 文件大小:29773
    • 提供者:lcl
  1. Disk-scheduling

    0下载:
  2. 磁盘调度算法,几个基本的磁盘调度算法,包括FCFS,SSTF,SCAN,CSCAN等,本程序采用c#完成,有需要的可以下-Disk scheduling algorithm, a few basic disk scheduling algorithms, including FCFS, SSTF, SCAN, CSCAN and so on, using c# to complete this procedure, there is a need that can be under the
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-29
    • 文件大小:43831
    • 提供者:qianglc
  1. keqiangzhanshiduanzuoye

    0下载:
  2. 在现代操作系统中,引入了一个重要的概念,那就是进程。引入进程的目的是使程序能够正确地并发执行,进程存在的唯一标志是进程控制块。 在分时系统中,导致创建进程的典型事件是用户登录,在批处理系统中,导致创建进程的典型事件是作业调度,有系统专门为运行中的应用进程创建新进程的事件是提供服务,在创建进程过程中,有调度程序为进程分配CPU不是创建所必需的。 从执行状态转变为活动就绪,如果由于终端用户的请求而暂时停止下来,则它的状态应转变为静止就绪,如果由于得不到所申请的资源而暂时停止下来,则它的状
  3. 所属分类:Document

    • 发布日期:2017-03-29
    • 文件大小:230357
    • 提供者:杜军衔
  1. JobAttemper

    0下载:
  2. 计算机操作系统实验,FCFS和JSF算法-OS FCFS & JSF algorithm
  3. 所属分类:.net

    • 发布日期:2017-04-06
    • 文件大小:1478
    • 提供者:lin
  1. OSDiskDispatchDemo

    0下载:
  2. 磁盘调度算法的模拟实现,我大学时的一个os作业,包含fcfs sstf scan cscan nstepscan 这几种算法,源码很简单主要还是算法的思想-Disk scheduling algorithm simulation to achieve, a os my college work, including fcfs sstf scan cscan nstepscan these types of algorithms, source code is very simple idea o
  3. 所属分类:Other systems

    • 发布日期:2017-03-28
    • 文件大小:3085
    • 提供者:李萌
  1. FCFSSJFHRN

    0下载:
  2. 作业调度三种算法FCFS,SJF,HRN -FCFS SJF HRN
  3. 所属分类:.net

    • 发布日期:2017-04-04
    • 文件大小:1793
    • 提供者:薛毅
  1. aaa

    0下载:
  2. visual studio 6.0实现先来先服务FCFS和短作业优先SJF进程调度算法-visual studio 6.0 to achieve a first-come first-served FCFS and SJF short work process scheduling priority
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-03
    • 文件大小:677264
    • 提供者:郑细强
  1. JBC

    0下载:
  2. 这是一个关于作业调度的程序,包含了FCFS,SJF和HRN三种算法-Here is a job scheduling process, including the FCFS, SJF, and three algorithms HRN
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-28
    • 文件大小:131013
    • 提供者:run
  1. DispatchAlgorithm

    0下载:
  2. 作业调度的分配回收算法 含有FCFS调度算法与SJF调度算法-Job scheduling algorithm for the distribution of recovery with the SJF scheduling algorithm with FCFS scheduling algorithm
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-02
    • 文件大小:1713
    • 提供者:崔童童
  1. Cpp2

    0下载:
  2. 进程调度算法(FCFS,优先级算法,Round Robin算法等)-Process scheduling algorithms (FCFS, priority algorithm, Round Robin algorithm, etc.)
  3. 所属分类:OS Develop

    • 发布日期:2017-04-06
    • 文件大小:2237
    • 提供者:TK
  1. 5_1

    1下载:
  2. 实现先来先服务FCFS、短作业优先SJF以及时间片轮转调度算法-To achieve a first-come first-served FCFS, SJF, and short operating time slice cycle priority scheduling algorithm
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:1865
    • 提供者:zhang
  1. cipan

    0下载:
  2. 磁盘调度算法 包括fcfs,最短寻道时间,电梯调度,单项扫描 -Disk scheduling algorithms include fcfs, shortest seek time, elevator scheduling, single scan
  3. 所属分类:Disk Tools

    • 发布日期:2017-03-28
    • 文件大小:280141
    • 提供者:mage
« 1 2 ... 4 5 6 7 8 910 11 12 13 »
搜珍网 www.dssz.com