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

搜索资源列表

  1. os5

    0下载:
  2. “进程调度算法的实现”。 其实验目的是: 1实现先来先服务FCFS、短作业优先SJF以及时间片轮转调度算法。 2 了解上述3种算法的机理。 -Process scheduling algorithm to achieve. " The purpose of the experiment is as follows: 1 first-come first-served FCFS, priority to short jobs SJF and round-robin sche
  3. 所属分类:OS Develop

    • 发布日期:2017-03-27
    • 文件大小:2402
    • 提供者:pang
  1. CPU

    0下载:
  2. 实验目的:采用仿真实验的方法,分析在FCFS、SJF、RR和MLFS算法中,下列因素对平均周转时间的影响。-Objective: using simulation method, analysis in FCFS, SJF, RR and MLFS algorithms, the following factors on the average turnaround time effect.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-02
    • 文件大小:938145
    • 提供者:周世伟
  1. Operating-system

    0下载:
  2. 模拟了操作系统中的5中页面置换算法,fcfs,SJF,HRN,RR和静态优先权,并且显示平均周转时间和带权周转时间。-Simulation of the operating system in the 5 page replacement algorithm, FCFS, SJF, HRN, RR and static priority, and shows the average turnaround time and turnaround time with the right.
  3. 所属分类:OS Develop

    • 发布日期:2017-05-29
    • 文件大小:11917877
    • 提供者:李娟娟
  1. Process-scheduling

    0下载:
  2. 操作系统程序,四种进程调度算法,(fcfs,sjf,gxyb)C语言版-failed to translate
  3. 所属分类:OS Develop

    • 发布日期:2017-04-14
    • 文件大小:5240
    • 提供者:御弟哥哥
  1. FCFSandSJf

    0下载:
  2. 模拟了操作系统中的两种调度算法-FCFS和SJF。- Simulate the two scheduling algorithms in operating system-FCFS queue and SJF.
  3. 所属分类:OS Develop

    • 发布日期:2017-03-30
    • 文件大小:520272
    • 提供者:Dwxiao
  1. OS_RR-and-SJF

    0下载:
  2. 操作系统 进程调度模拟设计——时间片轮转、强占式短进程优先算法-Operating system process scheduling simulation design- round-robin preemptive short process first algorithm
  3. 所属分类:OS Develop

    • 发布日期:2017-03-26
    • 文件大小:36549
    • 提供者:包包
  1. cos

    0下载:
  2. 由C编写的实现os进程FCFS和SJF两种算法调度-Written in C to achieve os process FCFS and SJF two algorithms scheduling
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:2197
    • 提供者:Natureli
  1. FZYDDzipi

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

    • 发布日期:2017-04-17
    • 文件大小:136034
    • 提供者:
  1. UFFCFSSJFs

    0下载:
  2. 用C语言 实现作业调度算法(FFCFS,SJF) -Job scheduling algorithm using C language (FFCFS, SJF)
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:2031
    • 提供者:ywhfdl
  1. FZYDD11i

    0下载:
  2. 先来先服务算法(FCFS),短作业算法(SJF),高响应比算法(HRN)和高优先权优先算法是作业调度度总经常采用的,通过上述算法的模拟加深对作业控制块JCB的理解和作业调度过程的实现技巧。 -Algorithm (FCFS) first-come, first-served the short operating algorithm (SJF), high response first algorithm than the algorithm (HRN) and high-priority
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-03
    • 文件大小:130412
    • 提供者:shanchun
  1. OS-process-

    0下载:
  2. 该段代码为操作系统进程调度的算法分析,内含三种算法FCFS、SJF、时间片轮转,在程序结束之前会对三种算法进行简单的分析。-The sections of the code for the operating system process scheduling algorithm analysis, containing three algorithms FCFS, SJF, time slice rotation, a simple analysis is interested in the
  3. 所属分类:Process-Thread

    • 发布日期:2017-11-13
    • 文件大小:1333
    • 提供者:曲文集
  1. SJF

    0下载:
  2. This short job first.
  3. 所属分类:Other systems

    • 发布日期:2017-12-09
    • 文件大小:9998
    • 提供者:shilpi
  1. dsfdsgvfdsgfvsd

    0下载:
  2. 1) 采用先来先服务(FCFS)调度算法,即按作业到达的先后次序进行调度。总是首先调度在系统中等待时间最长的作业。 2) 短作业优先 (SJF) 调度算法,优先调度要求运行时间最短的作业。 3) 响应比高者优先(HRRN)调度算法,为每个作业设置一个优先权(响应比),调度之前先计算各作业的优先权,优先数高者优先调度。RP (响应比)= 作业周转时间 / 作业运行时间 每个作业由一个作业控制块JCB表示,JCB可以包含以下信息:作业名、提交(到达)时间、所需的运行时间、所需的资源、作业
  3. 所属分类:software engineering

    • 发布日期:2017-11-22
    • 文件大小:31122
    • 提供者:张志刚
  1. SJF

    0下载:
  2. 操作系统实验内容,实现抢占式短作业优先处理机调度,结合内存管理,内存管理采用首次适应分配算法-Experimental content of the operating system, preemptive short job priority processor scheduling, combined with the memory management, memory management using the first-fit allocation algorithm
  3. 所属分类:Other systems

    • 发布日期:2017-11-20
    • 文件大小:3083
    • 提供者:口天吴
  1. os5

    1下载:
  2. 通过在实验三阶段基础上,完成实现按先来先服务FCFS、短作业优先SJF以及时间片轮转算法调度进程的模拟过程,掌握进程调度算法的方法。-Completed on the basis of the experimental three-stage short operating priority SJF as well as round-robin the algorithm scheduling process simulation, first-come, first-served FCFS m
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-14
    • 文件大小:243510
    • 提供者:lizhi
  1. liujianh02

    0下载:
  2. 用C语言实现对N个进程采用FCFS进程调度算法和SJF进程调度算法的调度-Scheduling N processes using FCFS process scheduling algorithm and SJF process scheduling algorithm using C language
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-30
    • 文件大小:62913
    • 提供者:刘建红
  1. process-scheduling-experiment

    0下载:
  2. 操作系统进程调度实验://代码没有问题,是由cpp改成txt的,肯定能够运行。 //功能:根据磁盘调度的三种算法FCFS、短作业优先SJF和时间片轮转计算出处理机在分配内存时的工作原理,同时加深对这三种算法的记忆。 -Operating system process scheduling experiment ://code no problem, is changed by the cpp txt certainly be able to run.// Function: acc
  3. 所属分类:OS Develop

    • 发布日期:2017-11-25
    • 文件大小:1628
    • 提供者:金旭斌
  1. FCFS

    0下载:
  2. FCFS(First Come First Served )和先来先服务最短作业优先算法SJF-FCFS (First Come First Served) and a first-come, first-served shortest job first algorithm SJF
  3. 所属分类:Other systems

    • 发布日期:2017-04-08
    • 文件大小:767
    • 提供者:yangbo
  1. Cpp1

    0下载:
  2. 进程调度--FCFS,SPN,RR算法的实现-The process of a high degree of simulation, using the First Come First Served (FCFS), shortest operation priority (SJF), respond to high priority (HRN) scheduling algorithm.
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-02
    • 文件大小:2509
    • 提供者:Echo
  1. OperationsManagement

    0下载:
  2. 操作系统作业调度算法,分别是先来先服务(FCFS),最短作业优先(SJF)、响应比高者优先(HRN)的调度算法-Operating system scheduling algorithms, which are first-come, first-served (FCFS), shortest job first (SJF), response to high priority (HRN) scheduling algorithm
  3. 所属分类:OS Develop

    • 发布日期:2017-04-06
    • 文件大小:2244
    • 提供者:大飞飞猪
« 1 2 3 4 5 6 7 89 10 »
搜珍网 www.dssz.com