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

搜索资源列表

  1. 作业调度11

    1下载:
  2. 由于在单道批处理系统中,作业一投入运行,它就占有计算机的一切资源直到作业完成为止,因此调度作业时不必考虑它所需要的资源是否得到满足,它所占用的CPU时限等因素。 每个作业由一个作业控制块JCB表示,JCB包括如下信息:作业名、提交时刻、所需运行时间、所需资源、作业状态、链指针等。 在程序开始时对用户提交的作业按作业调度算法排列,用链表形式存储,这里分别采用先来先服务、短作业、响应比高者优先调度算法对作业进行调度。这里为了操作者的方便,每个作业无论所需运行时间多少,都是每敲一次键盘就执行完一个作业
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:3648
    • 提供者:江大
  1. 作业调度算法实现

    0下载:
  2. 这是一个关于作业调度和进程调度的算法实现,操作系统的试验程序!-This is one of the job scheduling and process scheduling algorithm, the operating system of testing procedures!
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:3199
    • 提供者:杨新
  1. 操作系统高响应比作业调度

    0下载:
  2. 操作系统作业调度源码,用的是高相应比算法-Job Scheduling-source operating system, with the corresponding high Algorithm
  3. 所属分类:Windows编程

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

    0下载:
  2. 操作系统的作业调度模拟-operating system simulation Job Scheduling
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:1811
    • 提供者:木头
  1. 作业调度程序l

    0下载:
  2. 操作系统试验作业调度程序-operating system test procedures Job Scheduling
  3. 所属分类:WEB源码

    • 发布日期:2008-10-13
    • 文件大小:2040
    • 提供者:吴春欢
  1. 批处理作业调度

    0下载:
  2. 批处理作业调度问题要求对于给定的n个作业,制定最佳作业调度方案,使其完成时间和最小-batch scheduling requirements for the issue to the n operations, the best scheduling program, and to fulfill the minimum time
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:1882
    • 提供者:姚翊
  1. 作业调度

    0下载:
  2. 作业调度采用运行时间最短者优先算法,运行时间相同者采用先来先服务算法。-Job Scheduling using the shortest running time priority algorithm, the running time to adopt the same first-come first-serve algorithm.
  3. 所属分类:中文信息处理

    • 发布日期:2008-10-13
    • 文件大小:8529
    • 提供者:王丹
  1. 作业调度实验

    0下载:
  2. 大学操作系统课程的其中一个实验--作业调度的模拟-university courses on operating system of an experimental -- Job Scheduling Simulation
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:497284
    • 提供者:山狗
  1. 分支限界法_批处理作业调度

    1下载:
  2. 算法设计中的分支限界法中的批处理作业调度问题的实现,是用VC++编写的-algorithm design of branch and bound method of batch job scheduling problem is true, VC + + prepared
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:10813
    • 提供者:ddd
  1. 作业调度三种算法FCFS,SJF,HRN

    0下载:
  2. 作业调度三种算法FCFS,SJF,HRN -Job Scheduling Algorithm FCFS, SJF, 010-001
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:3592
    • 提供者:杭天
  1. 批处理系统的作业调度

    0下载:
  2. 这是上完操作系统课时,做的实习设计,又实验的目的,分析,设计。采用的是用响应比作业调度算法。-this is the operating system on the classroom, doing internships designed and The purpose of this experiment, analysis, design. The response ratio is Job Scheduling algorithm.
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:215835
    • 提供者:成龙
  1. 作业调度源程序

    0下载:
  2. 操作系统作业调度源代码 作业调度算法实现本程序主要实现了进程调度中最常见的算法-operating system source code scheduling algorithms operating procedures for the main process of scheduling the most common algorithm
  3. 所属分类:书籍源码

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

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

    • 发布日期:2008-10-13
    • 文件大小:2987
    • 提供者:陈峰
  1. 车间作业调度问题遗传算法通用Matlab程序

    8下载:
  2. 车间作业调度问题遗传算法通用Matlab程序,很好用的的哦,the matlab implementation of job-shop scheduling problem solution based on the GA algorithm.
  3. 所属分类:matlab例程

    • 发布日期:2016-08-21
    • 文件大小:50882
    • 提供者:朱磊
  1. ZYDD.rar

    1下载:
  2. 先来先服务(FCFS)算法、短作业优先(SJF)算法、高响应比(HRN)算法和高优先权算法来实现作业调度算法的模拟。 (1) 算法采用下式计算响应比: 等待时间waittime 需要运行时间requesttime (2) 高优先权算法采用下述公式计算优先权: 优先权priority*等待时间waittime 需要运行时间requesttime*紧迫程度quick ,First Come First
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:136082
    • 提供者:hghh
  1. 作业调度

    0下载:
  2. 作业调度.doc
  3. 所属分类:文档资料

  1. HomeworkScheduling

    0下载:
  2. 操作系统课程设计 C++ MFC 作业调度,包含先来先服务,最短作业有先,响应比高者优先等算法 包含课程设计报告-Operating System Course Design C++ MFC job scheduling, including a first-come first-served, shortest job has the first, the response is high and preferred method includes courses such as design
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-10
    • 文件大小:2404249
    • 提供者:lilinxuan
  1. 1

    0下载:
  2. 操作系统实验二作业调度实验的单道批处理的3种方法-Experiment 2 operating system, job scheduling batch experiments three kinds of single-channel approach
  3. 所属分类:Other systems

    • 发布日期:2017-04-09
    • 文件大小:910057
    • 提供者:dancyliang
  1. 进程调度与作业调度的模拟

    0下载:
  2. 对进程调度与作业调度的模拟,进程调度算法:采用的是最高优先数优先的高度算法(即把处理机分配给优先数最高的进程和先来先服务算法。分区分配和回收算法:采用首次适应算法和最佳适应算法实现动态分区。其中,空闲分区通过空闲分区链来管理,在进行内存分配时,系统优先使用空闲区低端的空间。-process of scheduling and job scheduling simulation and process scheduling algorithm : the highest priority is t
  3. 所属分类:OS Develop

    • 发布日期:2017-03-23
    • 文件大小:40000
    • 提供者:陈任全
  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. 所属分类:其他

« 12 3 4 5 6 7 8 9 10 ... 34 »
搜珍网 www.dssz.com