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

搜索资源列表

  1. Soft20060210155930686

    0下载:
  2. 处理机调度算法先来先服务算法、最短作业优先算法
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:3306
    • 提供者:liufang
  1. SJF

    1下载:
  2. 作业调度算法(SJF)编程模拟:编程实现由短作业优先算法对模拟作业的调度。
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:30850
    • 提供者:hulinjie
  1. shiyan_5

    0下载:
  2. 程序的主要实现了进行横调度的功能,实现了FCFS算法,短作业优先算法和时间片轮换算法
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:1571
    • 提供者:王业鹏
  1. 操作系统2

    1下载:
  2. 本程序是操作系统的处理机调度问题的c原代码包括三种调度算法:时间片轮转法,短作业优先算法,动态优先级算法-this process is the operating system processor scheduling problems c original code includes three Scheduling Algorithm : Time Web tablets, short operating priority algorithms, dynamic priority algo
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:10781
    • 提供者:陈明
  1. 作业调度模拟

    0下载:
  2. 在一个多道程序设计系统中,实现“作业调度”的模拟。模拟程序的要求如下: 1.输入: 作业流文件,其中存储的是一系列待执行的作业信息,每个作业包括五个数据项:作业号,优先级,进入输入井时间(用一个整数表示,如10:10表示为1010),作业估计运行时间(单位:分钟),内存需求量。各数据项用空格隔开。 2.输出: 按照作业调度次序输出每一个作业流文件:“作业号”、“进入内存时间”、“作业完成时间”、“周转时间”;每行输出一个作业的信息。 计算出平均周转时间并输出。 3.作业调度算法: 短作业优先(作
  3. 所属分类:文件操作

    • 发布日期:2008-10-13
    • 文件大小:2987
    • 提供者:陈峰
  1. dandao

    0下载:
  2. 编写并调试一个单道处理系统的作业等待模拟程序。   作业等待算法:分别采用先来先服务(FCFS),最短作业优先(SJF)、响应比高者优先(HRN)的调度算法。   对每种调度算法都要求打印每个作业开始运行时刻、完成时刻、周转时间、带权周转时间,以及这组作业的平均周转时间及带权平均周转时间,以比较各种算法的优缺点。 -Write and debug a single-channel processing system operating to wait for simulation
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-27
    • 文件大小:1736
    • 提供者:sylvia
  1. processor-scheduling

    1下载:
  2. C++编写的处理机调度程序,包括先来先服务算法,短作业优先算法,高响应比优先调度算法。-Written in C++ Processor scheduler, including the first-come, first serve algorithm, short job first algorithm, priority scheduling algorithm with high response ratio.
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:2391
    • 提供者:xiaohe
  1. 2009

    0下载:
  2. 用短作业优先,高响应比,先来先服务算法实现了作业调度的模拟-Short operating priority, high-response ratio, first-come first-serve job scheduling algorithm simulation
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-05
    • 文件大小:1000467
    • 提供者:liushi
  1. jinchengdiaodu

    0下载:
  2. 进程调度算法包括:时间片轮转法,短作业优先算法,动态优先级算法。 2)可选择进程数量 3)本程序包括三种算法,用C或C++语言实现,执行时在主界面选择算法,进入子页面后执行,显示结果。-The process of scheduling algorithms: round-robin method, short job first algorithm, the dynamic priority-level algorithm. 2) choose the number of proc
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-08
    • 文件大小:553913
    • 提供者:wuwenqin
  1. linux

    0下载:
  2. linux模拟进程调度的五种经典算法,短作业优先算法,先来先服务算法,时间片轮转法算法,多级反馈调度,优先级调度算法。-process simulation scheduling a first-come first-served algorithm
  3. 所属分类:Linux驱动

    • 发布日期:2017-04-01
    • 文件大小:321445
    • 提供者:周攀
  1. JSF

    0下载:
  2. 操作系统作业调度JSF算法模拟程序。根据短作业优先算法调度作业进入内存运行-Operating system scheduling algorithm simulation program JSF. According to the short operating priority scheduling algorithm for operation into the memory to run
  3. 所属分类:OS Develop

    • 发布日期:2017-04-13
    • 文件大小:1972
    • 提供者:李志龙
  1. duanzuoye2

    0下载:
  2. 这是大学操作系统进程调度实验的其中一个算法。实验中应该要注意的是关于C中指针的用法,因为指针的用法比较灵活又非常容易出错,一不小心应用不严密就会出错。如在实行按短作业优先算法调度进程的过程中,每一次输入无论是周转时间,运行时间,还是响应时间都要用指针返回arrivetime,否则就出错。还有在插入和释放结点时,用此中指针表示法会比用for循环语句简明很多。再一个就是在选择运行时间最小的进程时,察看当前就绪队列中的进程数也是很关键的,其间所得的count对于下面两步都很重要。-err
  3. 所属分类:OS Develop

    • 发布日期:2017-04-10
    • 文件大小:1497
    • 提供者:舒拉
  1. jobExc

    1下载:
  2. 实现作业调度问题的先来先服务算法、短作业优先和响应比高者优先三种算法-Job scheduling problem to achieve first-come first-serve algorithm, a short operation in response to high priority and priority three algorithms
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-27
    • 文件大小:18914
    • 提供者:leoner
  1. ShortZuoYeYouXian

    0下载:
  2. 短作业优先算法,实现对进程的调度,有利于短作业的进程实行,采用C++代码实现-Short operating priority algorithm, the realization of the scheduling process and is conducive to the implementation of the short process of operating, using C++ code to achieve
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-02
    • 文件大小:896545
    • 提供者:曾冬梅
  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
    • 文件大小:1947702
    • 提供者:段崖崖
  1. diaodu

    0下载:
  2. 先来先服务(FCFS)算法、短作业优先(SJF)算法、高响应比(HRN)算法和高优先权优先算法是作业调度中经常采用的,通过上述算法的模拟加深对作业控制快JCB的理解和作业调度过程的实现技巧-job jobjob jobjob jobjob jobjob jobjob jobjob jobjob jobjob job
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-30
    • 文件大小:16244
    • 提供者:赵子航
  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. Single-channel_batch_system

    0下载:
  2. 单道批处理系统:里面包括先来先服务算法,最短作业优先算法,响应比高者优先算法,时间片轮转算法。适合学习参考-Single-channel batch system: first come first serve which includes algorithms, shortest job first algorithm, the response is high and preferred method, time slice rotation algorithm. Reference for
  3. 所属分类:OS Develop

    • 发布日期:2017-03-31
    • 文件大小:2442
    • 提供者:Juno
  1. spf

    0下载:
  2. 短作业优先算法的模拟,操作系统实验设计,使用结构体-Short job first algorithm simulation, the operating system experimental design, the use of structure
  3. 所属分类:OS Develop

    • 发布日期:2017-04-10
    • 文件大小:1295
    • 提供者:余香
  1. precess

    0下载:
  2. VC++模拟作业调度算法,包括先来先服务和短作业优先算法-VC++ simulation of job scheduling algorithms, including a first-come first-served priority algorithm and short job
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-05-15
    • 文件大小:4050660
    • 提供者:victor
« 1 23 4 5 6 7 8 9 »
搜珍网 www.dssz.com