搜索资源列表

  1. cipandiaodusuanfa

    0下载:
  2. 包括  先来先服务调度算法  最短寻道优先调度算法  扫描算法-including
  3. 所属分类:软件工程

    • 发布日期:2024-05-11
    • 文件大小:1024
    • 提供者:踏歌内
  1. PAg

    0下载:
  2. 先来先服务,短作业有限,优先级,高响应比等多种调度算法展示-first-come first-service operations limited short-priority, high-response than many other display Scheduling Algorithm
  3. 所属分类:进程与线程

    • 发布日期:2024-05-11
    • 文件大小:55296
    • 提供者:
  1. cg

    0下载:
  2. 这是一个进程调度的算法,式用C++编写的,有短作业优先和先来先服务俩各种-This is a process of scheduling algorithm, C-prepared in a short operation priorities and a first-come first-the two different services
  3. 所属分类:系统编程

    • 发布日期:2024-05-11
    • 文件大小:2048
    • 提供者:xinxin
  1. 1

    0下载:
  2. cpu进程调度,优先调度算法,先来先服务算法。-cpu process scheduling, priority scheduling algorithm, first-come first-serve algorithm.
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-11
    • 文件大小:4096
    • 提供者:wzymm
  1. cidaofangwen

    0下载:
  2. 磁道访问算法模拟 /* 磁盘调度算法 要求: 1。实现三种算法: 1。先来先服务 2。最短寻道优先(老师会给当前磁头的位置) 3。电梯算法 2。磁道服务顺序从指定的文本文件(TXT文件)中取出 3。输出: -Track Access algorithm simulation/* disk scheduling algorithms requ
  3. 所属分类:系统编程

    • 发布日期:2024-05-11
    • 文件大小:1024
    • 提供者:pcq
  1. jiuchendiaodu

    0下载:
  2. 操作系统课程设计_进程调度演示源程序 .txt-_ The process of curriculum design the operating system scheduling demo source. Txt
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-11
    • 文件大小:2048
    • 提供者:黎龙飞
  1. duilie

    0下载:
  2. 利用链式队列模拟操作系统中先来先服务算法-The use of chain cohort simulation of the operating system first-come first-serve algorithm
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-11
    • 文件大小:10240
    • 提供者:王嘉寅
  1. jingchengdiaodu

    0下载:
  2. 进程的三种调度算法,先来先服务,短作业优先,时间片轮转。-The process of the three scheduling algorithms, first-come, first serve, short operating priority, time slice rotation.
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-11
    • 文件大小:1024
    • 提供者:孙雄
  1. zuoyediaodu

    1下载:
  2. 编写并调试一个单道处理系统的作业等待模拟程序。   作业等待算法:分别采用先来先服务(FCFS),最短作业优先(SJF)的调度算法。   对每种调度算法都要求打印每个作业开始运行时刻、完成时刻、周转时间、带权周转时间,以及这组作业的平均周转时间及带权平均周转时间,以比较各种算法的优缺点。(所有算法都是用VC++6.0编写) 补充说明:本程程序序包含两个算法,虽然两个算法是在同一个程序中,但两个算法是相互独立的,因为交作
  3. 所属分类:进程与线程

    • 发布日期:2024-05-11
    • 文件大小:400384
    • 提供者:曾超
  1. jinchengdiaodu

    0下载:
  2. 此程序可以实现操作系统中的先来先服务调度,高优先权优先调度和时间片轮转调度三种进程调度算法。-This process can realize the operating system in the First Come First Served scheduling, high-priority priority scheduling and time slice scheduling three rotary process sch
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-11
    • 文件大小:197632
    • 提供者:飘零
  1. gege

    0下载:
  2. 进程调度算法:采用最高优先数优先的调度算法(即把处理机分配给优先数最高的进程)和先来先服务算法。 每个进程有一个进程控制块( PCB)表示。进程控制块可以包含如下信息:进程名、优先数、到达时间、需要运行时间、已用CPU时间、进程状态等等。   进程优先数及需要的运行时间可以事先人为地指定(也可以由随机数产生)。进程的到达时间为进程输入的时间。进程的运行时间以时间片为单位进行计算。  -The process of sched
  3. 所属分类:进程与线程

    • 发布日期:2024-05-11
    • 文件大小:1024
    • 提供者:110
  1. duodaochenxuzhuanhuan

    0下载:
  2. 实现多道程序的转换调度 题目要求:(作业调度和进程调度结合在一起) 作业流信息是从指定文本文件(TXT文件)中读取 作业信息: 作业号 进入系统时间 估计运行时间 优先级 内存需求量 磁带机需求量 都为整型 作业调度算法:1、先来先服务;2、最短作业优先 进程调度算法:1、先来先服务;2、基于优先级的算法(静态优先级)(二者选一) 输出:作业序列 格式:作业号 时间间隔 1 800-810
  3. 所属分类:文件操作

    • 发布日期:2024-05-11
    • 文件大小:35840
    • 提供者:cx
  1. os

    0下载:
  2. 模拟操作系统的先来先服务算法,用到链表,排序,主要是为了理解操作系统的一种调度算法,也可作为链表排序的例子-Simulation of the operating system first-come first-serve algorithm, used list, sort, mainly in order to understand the operating system, a scheduling algorithm, can
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-11
    • 文件大小:186368
    • 提供者:lin ai yu
  1. Soft20060210155930686

    0下载:
  2. 处理机调度算法先来先服务算法、最短作业优先算法-Processor scheduling algorithm first-come first-serve algorithm, the shortest operation priority algorithm
  3. 所属分类:Windows编程

    • 发布日期:2024-05-11
    • 文件大小:3072
    • 提供者:liufang
  1. cdfw

    0下载:
  2. 磁盘调度算法 要求: 1。实现三种算法: 1。先来先服务 2。最短寻道优先(老师会给当前磁头的位置) 3。电梯算法 2。磁道服务顺序从指定的文本文件(TXT文件)中取出 3。输出: 第一行:磁道的服务顺序 第二行:显示移动总道数 本程序包括:FIFO,最短寻道优先调度算法,电梯算法 VC++调
  3. 所属分类:Windows编程

    • 发布日期:2024-05-11
    • 文件大小:1024
    • 提供者:dl
  1. DiskAcess

    0下载:
  2. 磁盘调度程序,先来先服务算法和最短寻道时间优先算法-Disk scheduling procedures, first-come, first service algorithm and the shortest seek time priority algorithm
  3. 所属分类:磁盘编程

    • 发布日期:2024-05-11
    • 文件大小:38912
    • 提供者:老卢
  1. a

    0下载:
  2. 一、实验内容 本课程设计要求模拟实现一个的单道批处理系统环境下的作业调度程序。通过实现具体的作业调度算法,加深对该环境下的作业调度模型和实现过程的理解。 二、实验要求与数据 1、至少实现有三种的作业调度算法:先来先服务、短作业优先和响应比优先算法。 2、能根据不同的调度算法算出每个作业的周转时间和带权周转时间,并通过一组作业算出系统的平均周转时间和平均带权周转时间,比较各种算法的优缺点。 -First, the
  3. 所属分类:C#编程

    • 发布日期:2024-05-11
    • 文件大小:19456
    • 提供者:杰少
  1. jincheng

    0下载:
  2. 基本上实现处理机对进程的最主要的调度执行算法:包括先来先服务、短作业/进程优先、时间片轮转调度算法、优先权调度算法、高响应比优先调度算法、多级反馈队列调度算法等算法。-Basically realize the main processor to process the implementation of the scheduling algorithm: including first-come, first serve, shor
  3. 所属分类:进程与线程

    • 发布日期:2024-05-11
    • 文件大小:49152
    • 提供者:wf
  1. fifo

    0下载:
  2. 在c环境下模拟操作系统中的先来先服务算法.-C simulation environment in the operating system of first come first serve algorithm.
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-11
    • 文件大小:3072
    • 提供者:bgl
  1. qingqiu

    0下载:
  2. 可以实现内存管理,采用先来先服务算法,在淘汰一页时,只将该页在页表中修改状态位。而不再判断它是否被改写过,也不将它写回到辅存。-Memory management can be achieved using a first-come first-serve algorithm, in one out of only the page in the page table modify status bits. Rather than to
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-11
    • 文件大小:1024
    • 提供者:Jhon
« 1 2 3 4 56 7 8 9 10 ... 21 »

源码中国 www.ymcn.org