CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 其它 操作系统开发 搜索资源 - seek算法

搜索资源列表

  1. c

    0下载:
  2. 要求: 1。实现三种算法: 1。先来先服务 2。最短寻道优先(老师会给当前磁头的位置) 3。电梯算法 2。磁道服务顺序从指定的文本文件(TXT文件)中取出 3。输出: 第一行:磁道的服务顺序 第二行:显示移动总道数-Requirements: 1. The realization of the three algorithms: 1. First Come First
  3. 所属分类:OS Develop

    • 发布日期:2017-04-11
    • 文件大小:1748
    • 提供者:
  1. cipanyibi

    0下载:
  2. 磁盘移臂调度过程模拟系统的设计——先来先服务法、最短寻道时间优先算法、电梯算法-The process of shifting the disk arm scheduling simulation system design- first come first serve method, the shortest seek time priority algorithm, Elevator algorithm
  3. 所属分类:OS Develop

    • 发布日期:2017-04-03
    • 文件大小:1891
    • 提供者:lingfei
  1. cpdd

    0下载:
  2. 设计五个算法,分别是先来先服务算法,最短寻道时间优先算法,扫描(SCAN)算法,循环扫描(CSCAN)算法,NStepSCAN算法.由人工输入当前的磁道数,由系统随即生成要访问的磁道-The design of the five algorithms, namely, first-come first-serve algorithm, the shortest seek time priority algorithm, scanning (SCAN) algorithm, scanning cy
  3. 所属分类:OS Develop

    • 发布日期:2017-03-30
    • 文件大小:3329
    • 提供者:uuwei
  1. a1

    0下载:
  2. 磁盘调度算法:包括先来先服务算法,最短寻道时间算法,电梯寻道算法。-Disk scheduling algorithms: including a first-come first-served algorithm, the shortest seek time algorithm, elevator seek algorithm.
  3. 所属分类:OS Develop

    • 发布日期:2017-03-31
    • 文件大小:1048
    • 提供者:lzh
  1. b

    0下载:
  2. 磁盘调度算法 先来先服务、最短寻道时间算法 操作系统课程设计-Disk scheduling algorithm first-come, first-served, shortest seek time operating system, curriculum design algorithm
  3. 所属分类:OS Develop

    • 发布日期:2017-04-10
    • 文件大小:1171
    • 提供者:xhouyan
  1. DiskSchecualing

    0下载:
  2. (1)设计并实现了一个函数,完成先来先服务的磁盘调度功能 (2)设计并实现了一个函数完成最短寻道时间优先的磁盘调度功能。 (3)设计并实现了一个函数完成电梯算法的磁盘调度功能 -(1) design and implementation of a function, to complete a first-come first-served disk scheduling (2) design and implementation of a function to complete
  3. 所属分类:OS Develop

    • 发布日期:2017-04-05
    • 文件大小:116515
    • 提供者:huazai
  1. scan_and_sstf

    0下载:
  2. 最短寻道时间优先(SSTF)和扫描(SCAN)算法。可以对给出的任意的磁盘请求序列、计算平均寻道长度; 要求可定制磁盘请求序列长度、磁头起始位置、磁头移动方向。-Shortest seek time first (SSTF) and scanning (SCAN) algorithm. Can be given any sequence of disk requests, calculate the average seek length requirements can be customi
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:197603
    • 提供者:李朗
  1. disk-schedule

    0下载:
  2. 操作系统\磁盘调度 磁盘调度的4种调度方式: 先来先服务调度\最短寻道时间优先调度算法\单向扫描/循环扫描调度算法-Operating System \ disk scheduling the four scheduling disk scheduling methods: first-come first-served scheduling \ shortest seek time first scheduling algorithm \ one-way scan/scan sch
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:300339
    • 提供者:oran
  1. Disk-scheduling

    0下载:
  2. ① 理解和掌握常用的磁盘调度算法的内容和原理。磁盘是可被多个进程共享的设备。当有 多个进程都请求访问磁盘时,应采用一种适当的调度算法,以使各个进程对磁盘的平均访问(主要是寻道)时间最小。 ② 通过本实验,使用先来先服务算法、最短寻道时间优先算法、扫描算法,模拟实现一个简单的磁盘调度系统。 -The understanding and grasp of the commonly used disk scheduling algorithm content and principle.
  3. 所属分类:OS Develop

    • 发布日期:2017-03-27
    • 文件大小:1562
    • 提供者:苡莣
  1. fcfs

    0下载:
  2. fcfs程序,操作系统的磁道算法,包含了最短寻道和优先算法-fcfs program, the operating system tracks algorithm with the shortest seek first algorithm
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:17554
    • 提供者:吴然然
  1. operating-system

    0下载:
  2. 计银行家算法,void FCFS(int Han,int DiscL[]) //先来先服务算法(FCFS) void SSTF(int Han,int DiscL[]) //最短寻道时间优先算法(SSTF) int SCAN(int Han,int DiscL[],int x,int y) //扫描算法(SCAN) void CSCAN(int Han,int DiscL[]) //循环扫描算法(CSCAN) void N_Step_SCAN(int Han1,int DiscL
  3. 所属分类:OS Develop

    • 发布日期:2017-03-27
    • 文件大小:240639
    • 提供者:suhuhu
  1. CCDU

    0下载:
  2. 磁盘调度算法.设计程序模拟先来先服务FCFS、最短寻道时间优先SSTF、SCAN和循环SCAN算法的工作过程。-Disk scheduling algorithms. Designed program to simulate a first-come, first-served FCFS, shortest seek first SSTF, SCAN and SCAN loop algorithm works.
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:1410
    • 提供者:杨顺刚
  1. FIFO

    0下载:
  2. c语言编写的FIFO页面淘汰算法,对页面访问序列进行处理,显示出换页的过程,并求出缺页率。-c language FIFO page replacement algorithm for page access sequence is processed, showing the paging process and seek vacancy rates page.
  3. 所属分类:OS Develop

    • 发布日期:2017-03-26
    • 文件大小:962
    • 提供者:较傻的瓜
  1. NewJFrame

    0下载:
  2. 磁盘调度算法的模拟与实现 1、先来先服务(FCFS) 2、最短寻道时间优先(SSTF) 3、扫描算法(SCAN) 4、循环扫描算法(CSCAN) -Simulation and implementation of a first-come, first-served (FCFS) disk scheduling algorithm 2, the shortest seek time priority (SSTF) 3, scanning algorithm (SCAN)
  3. 所属分类:OS Develop

    • 发布日期:2017-04-06
    • 文件大小:3112
    • 提供者:姬永明
  1. subject_5

    4下载:
  2. 编写一个磁盘调度程序,模拟操作系统对磁盘的调度。  可以随机输入磁道请求序列,当前磁头位置和磁头移动方向,支持先来先服务、最短寻道时间优先、扫描、循环扫描调度算法,能够输出磁头移动经过的磁道序列。 输入: 磁盘调度算法     当前磁头位置     磁头移动方向     磁道请求序列(磁道1,磁道2,磁道3,...)     其中:     (1) 调度算法选项为: 1 先来先服务 2 最短寻道时间优先
  3. 所属分类:OS Develop

    • 发布日期:2017-01-11
    • 文件大小:1024
    • 提供者:刘先生
  1. No.5-codes

    0下载:
  2. 5.模拟实现磁盘调度算法 实现FCFS、SSTF、SCAN、CSCAN等磁盘算法。接收用户输入参数,包括程序访问的磁道号等,输出结果包括访问的磁道顺序,平均寻道时间等。 -5. Analog achieve disk scheduling algorithms Achieve FCFS, SSTF, SCAN, CSCAN disk and other algorithms. Receiving user input parameters, including the program
  3. 所属分类:OS Develop

    • 发布日期:2017-05-04
    • 文件大小:4283
    • 提供者:name
  1. ConsoleApplication21

    0下载:
  2. 1、模拟先来先服务法(First-Come, First-Served,FCFS),最短寻道时间优先法(Shortest Seek Time First, SSTF),电梯扫描算法(SCAN)三种磁盘调度算法;(FCFS SSTF SCAN how to show you)
  3. 所属分类:操作系统开发

搜珍网 www.dssz.com