搜索资源列表
磁盘调度
- 磁盘调度算法,包括先进先出,最短查找,电梯调度及单向扫描-disk scheduling algorithms, including FIFO, shortest identifying, scheduling and one-way lift scan
DisktestPRO
- 这个代码是基于软盘修复,扫描的源代码,年轻一点的可能都不知道3.5寸软盘是什么东东了。时过境迁软盘淘汰了,但是这个源代码却是有很多东西值得我们学习,首先是动画界面和一些对磁盘扇区读写的算法都很不错,尤其里面的一个关于对话界面动画做的相当棒。还有对进度扇区网格的绘制,读取曲线绘制等做的很好,程序整个代码也不大,但功能却是很强大,基本上对软盘坏道搜索,扇区修复,格式化,快速格式化,坏道数据恢复,备份数据,坏的扇区标识和撤销标识,不通过文件系统擦出数据,测试软驱读写速度等等都做的很专业。源代码可以运行
磁盘进行调度的算法
- 这个程序主要实现对磁盘进行调度的算法,有先来先服务,最短寻道优先,扫描,单向扫描和循环五种算法的实现。
simulatingtestofdiskscheduling
- 磁盘调度算法,比较4种常见磁盘寻道算法:先来先服务(FCFS)、最短寻道时间优先(SSTF)、电梯调度(SCAN)和循环扫描算法(CSCAN)-disk scheduling
cipan
- 实现磁盘扫描的功能,主要是操作系统中的四种算法-Achieve the ScanDisk function of
1
- 磁盘调度模拟程序,观察磁臂寻道时的移动过程,再采用不同的寻道算法,比较不同。*先来先服务调度算法 *最短寻道优先调度算法 *扫描算法 *循环扫描算法 -Disk scheduling simulation program, observe the magnetic Seeker arm movement when the process of re-seeking algorithms using different, more different.* First come fi
cipan
- 磁盘调度算法 包括fcfs,最短寻道时间,电梯调度,单项扫描 -Disk scheduling algorithms include fcfs, shortest seek time, elevator scheduling, single scan
cipandiaodu
- 编程序实现下述磁盘调度算法,并求出每种算法的平均寻道长度: 要求设计主界面以灵活选择某算法,且以下算法都要实现 1、先来先服务算法(FCFS) 2、最短寻道时间优先算法(SSTF) 3、扫描算法(SCAN) 4、循环扫描算法(CSCAN) -Programmed to achieve the following disk scheduling algorithms, and calculate the average seek length of each algorit
NStepSCAN
- NStepSCAN N步磁盘扫描调度算法C++程序-#include "stdafx.h" #include "stdlib.h" int L,P int a[20] int flag //访问位 typedef struct TASK { int requrie int io } TASK TASK T[50][50] TASK N[50] int diskway //当前磁道 void iod
cipandiaodusuanfa
- 这个程序主要实现对磁盘进行调度的算法,有先来先服务,最短寻道优先,扫描,单向扫描和循环五种算法的实现。-This program to disk scheduling algorithm, first come first serve, Seeking shortest priority scanning, check scanning and circulation of five algorithms to achieve.
cipandiaodu
- 磁盘调度算法,采用MFC界面,FCFS(先来先服务):SSTF(最短寻道时间优先):SCAN 电梯调度算法 CSCAN循环扫描算法-Disk scheduling algorithm, using MFC interface, FCFS (first come first served): SSTF (shortest seek time priority): SCAN elevator scheduling algorithm CSCAN loop scanning algorithm
ll
- 1. 本实验是模拟操作系统的磁盘寻道方式,运用磁盘访问顺序的不同来设计磁盘的调度算法。 2. 实现的磁盘调度算法有FCFS,SSTF,SCAN,CSCAN和 NStepSCAN算法。 3. 设定开始磁道号寻道范围,依据起始扫描磁道号和最大磁道号数,随机产生要进行寻道的磁道号序列。 4. 选择磁盘调度算法,显示该算法的磁道访问顺序,计算出移动的磁道总数和平均寻道总数。 -1. This experiment is a simulation of the operating syst
Cpdd
- 模拟实现磁盘调度算法:最短寻道时间优先(SSTF)和扫描(SCAN)算法。-Simulation disk scheduling algorithms: shortest seek priority (SSTF) and scanning (SCAN) algorithm.