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

搜索资源列表

  1. Diskatt

    0下载:
  2. C#写的模拟磁盘磁头调度程序 包含fcfs sstf elevator3种算法-write in C#, emulate diskette head schedule program, include FCFS, SSTF and ELEVATOR arithmetic.
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:10361
    • 提供者:
  1. C++模拟

    0下载:
  2. c程序模拟操作系统的先来先服务算法(FCFS). 在VC 6.0下运行通过/ -c simulation of the operating system first-come first-serve algorithm (FCFS). 6.0 in VC run through /
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:1369
    • 提供者:刀尖
  1. yumianzhihuan

    0下载:
  2. 该程序是对页面置换算法中的最优置换, LRU,以及FCFS的比较进行比较的程序-procedures for the replacement pages to the optimal algorithm replacement, LRU. Comparison of FCFS comparison procedures
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:11872
    • 提供者:金金
  1. 060602fcfs

    0下载:
  2. 实现了操作系统先来先服务(FCFS)算法,包含全部源代码。-of the operating system first-come first-serve (FCFS) algorithm, includes full source code.
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:234484
    • 提供者:罗火光
  1. JOBattemper

    0下载:
  2. 单道系统作业调度:作业调度算法:分别采用先来先服务(fcfs)、最短作业优先(sjf)、响应比高者优先(hrn)的调度算法。 多道系统作业调度:作业调度算法:采用先来先服务(fcfs),即按作业提交的先后次序进行调度。总是首先调度在系统中等待时间最长的作业。-Shan Road System Operation : Job Scheduling Algorithm : By using the first-come first-serve (fcfs) the shortest operat
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:42449
    • 提供者:风飘零
  1. War1

    0下载:
  2. FCFS和SJF调度算法-FCFS scheduling algorithm and SJF
  3. 所属分类:JSP源码/Java

    • 发布日期:2008-10-13
    • 文件大小:1964
    • 提供者:张克
  1. osbymayfar

    0下载:
  2. 本程序实现FCFS先来先服务,SPF短进程优先,FPF_Reaved抢占式高优先级,TimePiece时间片轮转这四种进程调度算法。 程序运行时根据提示选择相应进程调度算法,然后调用函数GetRandProc(LPVOID lpParam)(程序专门为该函数开辟新的线程)产生随机进程并将其插入到就绪队列中然后再用相应的进程调度算法调度进程运行。 -the program FCFS first-come first-serve, SPF short process priority, Pr
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:21730
    • 提供者:mayfar
  1. Clunzhuanfa

    0下载:
  2. 编写并调试一个模拟的进程调度程序,采用“轮转法”调度算法对五个进程进行调度。   轮转法可以是简单轮转法、可变时间片轮转法,或多队列轮转法。   简单轮转法的基本思想是:所有就绪进程按 FCFS排成一个队列,总是把处理机分配给队首的进程,各进程占用CPU的时间片相同。如果运行进程用完它的时间片后还为完成,就把它送回到就绪队列的末尾,把处理机重新分配给队首的进程。直至所有的进程运行完毕。-prepared a simulation and debugging process sched
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:1616
    • 提供者:庄宁文
  1. OSdiaodu

    0下载:
  2. diaodu1完成基本模块框架 diaodu2完成了先进先出,和输出显示模块。 diaodu2-1准备将FCFS的到达时间按从小到大排列进行实现。未果 diaodu3完成了SJF,优化了输出精度 diaodu4基本完成了RR但是有一个小bug, diaodu5完成了RR diaodu6优化了一些输入输出,但是发现RR等于4时正确,大于或小于4都有问题。算法出现问题 diaodu7解决了RR的问题。程序基本完成 diaodu8优化了代码,并完善了RR输出时间轴表示
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:10728
    • 提供者:billdong
  1. pcos

    0下载:
  2. 21.c 先来先服务(FCFS)算法调度作业运行。 211.c最短作业优先(SJF)调度算法。 212.c响应比高者优先(HRN)调度算法-21.c first-come first-service (FCFS queue) algorithm scheduling operations running. 211.c shortest priority operations (SJF) scheduling algorithm. 212.c response ratio were hig
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:62635
    • 提供者:陈生
  1. FCFS101

    0下载:
  2. FCFS算法每次从就绪队列中选择一个最先进入该队列的进程,为之分配CPU,使之运行。该进程一直运行道完成或被某事件阻塞后,才放弃CPU。本程序模拟了FCFS算法。-FCFS algorithm for each queue ready to a first cohort to enter the process, which the allocation of CPU, to make it run. Run Road, the process has been completed or o
  3. 所属分类:ADO-ODBC

    • 发布日期:2017-04-30
    • 文件大小:7998
    • 提供者:m41ouba
  1. shiyan_5

    0下载:
  2. 程序的主要实现了进行横调度的功能,实现了FCFS算法,短作业优先算法和时间片轮换算法-The main achievement of the procedures to carry out cross-scheduling functions, the realization of the FCFS algorithm, the priority algorithm and short operating time slice rotation algorithm
  3. 所属分类:ADO-ODBC

    • 发布日期:2017-04-13
    • 文件大小:2167
    • 提供者:xxxgx125haohuan
  1. FCFS

    0下载:
  2. CPU调度算法FCFS的效率,首先输入进程数,在输入开始和运行时间,出比较结果-CPU efficiency FCFS scheduling algorithm, the first input of processes, the input start and run time, the comparison result
  3. 所属分类:ADO-ODBC

    • 发布日期:2017-04-12
    • 文件大小:1281
    • 提供者:kr2mutong
  1. FCFS101

    0下载:
  2. FCFS算法每次从就绪队列中选择一个最先进入该队列的进程,为之分配CPU,使之运行。该进程一直运行道完成或被某事件阻塞后,才放弃CPU。本程序模拟了FCFS算法。-FCFS algorithm for each queue ready to a first cohort to enter the process, which the allocation of CPU, to make it run. Run Road, the process has been completed or o
  3. 所属分类:ADO-ODBC

    • 发布日期:2017-05-01
    • 文件大小:8096
    • 提供者:ykjinggai2
  1. shiyan_5

    0下载:
  2. 程序的主要实现了进行横调度的功能,实现了FCFS算法,短作业优先算法和时间片轮换算法-The main achievement of the procedures to carry out cross-scheduling functions, the realization of the FCFS algorithm, the priority algorithm and short operating time slice rotation algorithm
  3. 所属分类:ADO-ODBC

    • 发布日期:2017-04-13
    • 文件大小:1707
    • 提供者:f368zhuoden7
  1. FCFS

    1下载:
  2. 操作系统进程调度算法的模拟实现。visual studio开发。-Operating system process scheduling algorithm simulation. Visual studio development.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-12-15
    • 文件大小:185344
    • 提供者:secug
  1. cipan

    0下载:
  2. 可以模拟操作那系统中的磁盘调度算法,比如FCFS 等。(Can simulate the operation of the system disk scheduling algorithm, such as FCFS and so on.)
  3. 所属分类:Windows编程

    • 发布日期:2017-12-22
    • 文件大小:39936
    • 提供者:帝国旗舰
  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
    • 文件大小:299008
    • 提供者:760008522
  1. 95222930

    0下载:
  2. 作业调度三种算法FCFS,SJF,HRN()
  3. 所属分类:数值算法/人工智能

    • 发布日期:2018-04-21
    • 文件大小:1024
    • 提供者:dldj%2415280
  1. fcfs

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

    • 发布日期:2018-05-07
    • 文件大小:26624
    • 提供者:xcy。
« 1 2 3 4 5 67 8 9 10 11 12 13 »
搜珍网 www.dssz.com