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

搜索资源列表

  1. ProcScheduling

    0下载:
  2. 编写并调试一个模拟的进程调度程序,采用“最高优先数优先”调度算法对N(N不小于5)个进程进行调度。 “最高优先数优先”调度算法的基本思想是把CPU分配给就绪队列中优先数最高的进程。 (1). 静态优先数是在创建进程时确定的,并在整个进程运行期间不再改变。 (2). 动态优先数是指进程的优先数在创建进程时可以给定一个初始值,并且可以按一定规则修改优先数。例如:在进程获得一次CPU后就将其优先数减少1,并且进程等待的时间超过某一时限(2个时间片时间)时增加其优先数等。 (3).
  3. 所属分类:Editor

    • 发布日期:2017-11-24
    • 文件大小:22823
    • 提供者:zhangjiaxiao
  1. ElevFramework

    0下载:
  2. 简单电梯调度算法,算法实现了类似于公交车功能的电梯调度算法,每层都停,效率低。但整个框架可用,只需修改调度算法即可-Simple the elevator scheduling algorithms, algorithms achieve the elevator scheduling algorithm, similar to the function of the bus on each floor are stopped, the efficiency is low. The entire
  3. 所属分类:Other systems

    • 发布日期:2017-12-02
    • 文件大小:17939161
    • 提供者:江北凤
  1. OS

    0下载:
  2. 调度算法的模拟和实现以及PCB的模拟挂起-Scheduling algorithm simulation and realization, and the simulation of PCB hang up
  3. 所属分类:OS Develop

    • 发布日期:2017-11-13
    • 文件大小:33846
    • 提供者:wanghong
  1. haha

    0下载:
  2. 模拟实现磁盘调度算法:扫描(SCAN)算法和最短寻道时间优先算法(SSTF)。对给出的任意的磁盘请求序列、计算平均寻道长度。要求可定制磁盘请求序列长度、磁头起始位置、磁头移动方向。-Analog disk scheduling algorithm: scan (SCAN) algorithm and the shortest seek time first algorithm (SSTF). On any given disk request sequence, calculate the av
  3. 所属分类:Internet-Socket-Network

    • 发布日期:2017-11-09
    • 文件大小:964
    • 提供者:qiqi
  1. SkinControls

    0下载:
  2. 操作系统驱动调度电梯调度算法的向西实现,对初学者有很强的实践意义-The operating system drive westward scheduling elevator scheduling algorithm to achieve strong practical significance for beginners
  3. 所属分类:Button control

    • 发布日期:2017-11-09
    • 文件大小:10019678
    • 提供者:
  1. os

    0下载:
  2. 一个操作系统的进程调度的实验。三种调度算法分别为 FCFS、优先级、时间片轮转。 其中优先级算法设置了三个级别的优先级。分别为0、1、2 。0为最高 2为最低。-An operating system process scheduling experiment. The three scheduling algorithm respectively FCFS, priority, time slice rotation. The priority algorithm set three leve
  3. 所属分类:Console

    • 发布日期:2017-11-22
    • 文件大小:82558
    • 提供者:程龙
  1. Process

    0下载:
  2. 用java语言编写的带有界面的模拟操作系统进程调度的程序,可随机生成10个进程,采用三种算法执行,即——1-先进先出调度算法 2-基于优先数的调度算法 3-最短执行时间调度算法-Java language interface with the operating system process scheduling simulation program, can be randomly generated 10 process, the implementation of the three al
  3. 所属分类:Process-Thread

    • 发布日期:2017-11-06
    • 文件大小:89660
    • 提供者:羊羊
  1. cos.c

    0下载:
  2. 操作系统进程模拟调度算法——先来先服务,用冒泡改变到达时间,以实现先来先服务进程的执行。-Operating system process simulation scheduling algorithm- first-come, first-served
  3. 所属分类:Windows Develop

    • 发布日期:2017-11-06
    • 文件大小:756
    • 提供者:buffer
  1. 22.01

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

    • 发布日期:2017-12-09
    • 文件大小:419243
    • 提供者:楚相水
  1. scheduling

    0下载:
  2. 计算机操作系统多级反馈队列算法及相应的实验报告-The computer operating system, multi-level feedback queue algorithm and the corresponding lab report
  3. 所属分类:assembly language

    • 发布日期:2017-11-12
    • 文件大小:1289104
    • 提供者:李娜丽
  1. operating-system-jobs---lab-report

    0下载:
  2. 自定义进程相关的数据结构; 利用MFC类库中的栈(queue),链表(list),向量(vector)等模板模拟进程控制块队列、进程控制块优先级队列、统计信息链表及其指令集合; 利用MSDN和MFC API编程实现常见的进程控制和调度策略(先来先服务算法、时间片轮转算法、最高优先权优先调度算法、最短进程优先调度算法); 测试以上进程调度策略的周转时间、带权周转时间、平均周转时间和平均带权周转时间,并定性评价它们的性能。-Custom process-related data stru
  3. 所属分类:Software Testing

    • 发布日期:2017-11-12
    • 文件大小:437699
    • 提供者:孙萧萧
  1. jinchengguanli

    0下载:
  2. 操作系统学末作业有关进程管理,进程调度算法有FIFO,优先数调度算法,时间片轮转调度算法,分级调度算法。-End operating system to learn about the job process management, process scheduling algorithms are the FIFO priority number scheduling algorithm, round-robin scheduling algorithm, hierarchical sched
  3. 所属分类:Other systems

    • 发布日期:2017-12-10
    • 文件大小:1000
    • 提供者:影子
  1. 1

    0下载:
  2. 设计一个按优先数调度算法实现处理器调度的程序-Design a priority number scheduling algorithm processor scheduling procedures
  3. 所属分类:Windows Kernel

    • 发布日期:2017-12-10
    • 文件大小:12237
    • 提供者:123
  1. demo

    0下载:
  2. 进程调度算法模拟。主要负责短进程优先调度算法、高优先权优先调度算法和多级反馈队列调度算法的模拟实现。-Process scheduling algorithm simulation. Short process is primarily responsible for the scheduling algorithm, the high-priority priority scheduling algorithms and multi-level feedback queue schedulin
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-28
    • 文件大小:100247
    • 提供者:super
  1. FCFS

    0下载:
  2. 作业调度 采用先来服务调度算法 进程调度采用时间片轮换-First to serve job scheduling scheduling algorithm
  3. 所属分类:OS Develop

    • 发布日期:2017-11-23
    • 文件大小:2192
    • 提供者:莫康
  1. worktime

    0下载:
  2. 有关上班时间调度的问题,根据每个时间段所需最少人数和员工需求安排各个员工的工作时间。很基础但很实用的调度算法。-For scheduling of working hours, according to each time period required for at least the number of all employees working time arrangements and staff needs. Very basic but very practical scheduli
  3. 所属分类:Other systems

    • 发布日期:2017-12-03
    • 文件大小:1279
    • 提供者:tiramisu
  1. paikesuanfa

    0下载:
  2. 目前流行的几种排课算法的介绍: 自动排课算法 冲突检测算法 基于优先级的排课算法 排课中的基本原则 排课的基本要求 基于时间片优先级排课算法描述-Course Scheduling Algorithm of several popular Introduction: Course Scheduling Algorithm conflict detection algorithm based on the basic principle of the priority in
  3. 所属分类:software engineering

    • 发布日期:2017-11-30
    • 文件大小:18940
    • 提供者:Anwys
  1. jincheng

    0下载:
  2. 设计进程 控制块PCB表结构,分别适用于优先数调度算法和循环轮转调度算法。-The design process of the process control block PCB table structure, were applied to the number of priority scheduling algorithms and round-robin scheduling algorithm.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-25
    • 文件大小:1047
    • 提供者:阳一
  1. jin-cheng-diao-du

    0下载:
  2. 用c语言模拟了操作系统中进程调度算法,包含了详细的代码。 -Simulated operating system process scheduling algorithm using c language, contains a detailed code.
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-11
    • 文件大小:260840
    • 提供者:liuyangbiao
  1. Process-scheduler-design

    1下载:
  2. 1.设计一个有几个进程并发执行的进程调度程序,每个进程由一个进程控制块(PCB)表示,进程控制块通常应包括下述信息:进程名,进程优先数,进程需要运行的时间,占用CPU的时间以及进程的状态等,且可按照调度算法的不同而增删。 2.调度程序应包含2—3种不同的调度算法,运行时可以任选一种,以利于各种方法的分析和比较。 3.系统应能显示或打印各进程状态和参数的变化情况,便于观察。 -1.To design a process scheduler the concurrent executio
  3. 所属分类:OS Develop

    • 发布日期:2016-05-14
    • 文件大小:290816
    • 提供者:落落
« 1 2 ... 44 45 46 47 48 4950 »
搜珍网 www.dssz.com