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

搜索资源列表

  1. 操作系统课程设计之进程调度

    0下载:
  2. 1)编程实现模拟操作系统进程调度子系统的基本功能;理解进程调度的概念,通过课程设计深入了解进程控制块的功能、进程的创建、删除以及进程各个状态间的转换过程;实现先来先服务、时间片轮转、多级反馈轮转法对进程进行的调度过程;通过观察有关的队列结构的内容的动态变化过程深入体会各个调度算法的特点;从而能够更好的巩固从书本上学到的知识。 2)编程过程中需要建立队列等结构进行各种操作,通过该次试验,可以督促学生从实用的角度对《数据结构》课程内容进行更深入理解和更熟练的应用。 3)实验编程语言要求使用jav
  3. 所属分类:文档资料

    • 发布日期:2009-12-23
    • 文件大小:310272
    • 提供者:ice042@126.com
  1. 进程调度模拟程序

    0下载:
  2. 编写一个进程调度程序,允许多个进程共行的进程调度程序。 采用最高优先数优先的调度算法和先来先服务调度算法。 每个进程有一个进程控制块( PCB)表示。每个进程的状态可以是就绪 W(Wait)、运行R(Run)、或完成F(Finish)三种状态之一。 采用动态优先数策略选择就绪进程获得 CPU后都只能运行一个时间片,运行完后优先数减1 动态显示每个进程的当前状态及进程的调度情况 重复以上过程,直到所要进程都完成为止
  3. 所属分类:文档资料

    • 发布日期:2009-05-14
    • 文件大小:155136
    • 提供者:shenchelove
  1. FCFS先来先服务进程调度

    0下载:
  2. 操作系统FCFS进程调度算法,简单易懂的源码
  3. 所属分类:源码下载

  1. diaodu.rar 磁盘调度设计

    0下载:
  2. 磁盘调度设计,磁盘调度算法的实现,包括  先来先服务调度算法  最短寻道优先调度算法  扫描算法  循环扫描算法  N—Step—SCAN算法,Disk Scheduling design, disk scheduling algorithm, including
  3. 所属分类:数值算法/人工智能

    • 发布日期:2017-11-08
    • 文件大小:2122
    • 提供者:姚军
  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. 所属分类:文档资料

    • 发布日期:2012-09-14
    • 文件大小:210944
    • 提供者:hyfen2009
  1. process

    0下载:
  2. 进程调度代码_pcb_包括先来先服务算法_片转轮算法_优先级算法_可运行-Process scheduling code _ PCB _ includes first come first serve algorithm _ slice wheel algorithm _ priority algorithm _ can run
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-02
    • 文件大小:2697
    • 提供者:x_ly
  1. java

    0下载:
  2. 编程,作业调度算法,先来先服务短作业优先-Programming, job scheduling algorithms, first-come first-serve priority short homework
  3. 所属分类:Java Develop

    • 发布日期:2017-03-29
    • 文件大小:13668
    • 提供者:zhao
  1. procSchdule

    0下载:
  2. 操作系统实验 先来先服务算法 C语言编写-Operating System Experiment first-come, first-served algorithm written in C
  3. 所属分类:OS Develop

    • 发布日期:2017-04-11
    • 文件大小:995
    • 提供者:龚靖仁
  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. linux

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

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

    0下载:
  2. 设计一个有 N个进程并行的进程调度程序,采用最高优先数优先的调度算法(即把处理机分配给优先数最高的进程)和先来先服务算法.-Design of a parallel process, N a process scheduler, using the highest priority number of priority scheduling algorithm (ie the number of processors allocated to the highest priority to th
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-25
    • 文件大小:111429
    • 提供者:魏忠祥
  1. fifo

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

    • 发布日期:2017-04-06
    • 文件大小:3766
    • 提供者: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 judge whether it had been rew
  3. 所属分类:OS Develop

    • 发布日期:2017-04-10
    • 文件大小:1149
    • 提供者:Jhon
  1. FCFS

    0下载:
  2. 操作系统作业调度FCFS算法模拟程序。根据先来先服务原则对提交作业进行调度执行。-FCFS job scheduling algorithm operating system simulation program. According to the principle of first come first serve on the Executive to submit scheduling operations.
  3. 所属分类:OS Develop

    • 发布日期:2017-03-22
    • 文件大小:1952
    • 提供者:李志龙
  1. cipan

    0下载:
  2. 磁盘调度算法实现:先来先服务算法(FCFS)、短寻道时间优先算法(SSTF)算法和电梯算法(SCAN)-Disk Scheduling Algorithm: First Come First Served algorithm (FCFS), short seek time priority algorithms (SSTF) algorithm and elevator algorithm (SCAN)
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-10
    • 文件大小:1610
    • 提供者:黄致伟
  1. abaozhu_jincheng

    0下载:
  2. 计算机操作系统课程设计,进程调度,静态优先级调度算法以及先来先服务调度算法的模拟.-Computer operating system curriculum design, process scheduling, static priority scheduling algorithm, as well as first-come first-serve scheduling algorithm simulation.
  3. 所属分类:OS Develop

    • 发布日期:2017-04-07
    • 文件大小:4307
    • 提供者:hsh
  1. 35738628processmanagerment

    0下载:
  2. 1进程控制和同步等 可以控制进程的就绪执行和阻塞三种状态等基本功能。 2进程调度: 调度算法采用的是先来先服务算法。 3进程在运行过程中状态变化的屏幕输出: 输出的内容包括—就绪的进程队列,当前cup正在执行的进程,被阻塞的进程队列。 -1 process control and synchronization control process in place and blocking the implementation of three basic functions
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-27
    • 文件大小:38988
    • 提供者:情殇
  1. daima

    0下载:
  2. 操作系统,模拟抢占式短进程优先调度算法,先来先服务算法-Operating systems, process simulation of short-priority preemptive scheduling algorithm, first-come first-serve algorithm
  3. 所属分类:Project Design

    • 发布日期:2017-04-15
    • 文件大小:6132
    • 提供者:jdk_1_ok
« 1 2 34 5 6 7 8 9 10 ... 18 »
搜珍网 www.dssz.com