资源简介
图形化界面
1、设计目的
通过模拟设计磁盘驱动调度程序,观察驱动调度程序的动态运行过程,理解和掌握磁盘驱动调度的职能,并比较各种算法的调度结果。
2、设计内容
要求设计主界面能灵活选择某算法,且以下算法都要实现。
(1)先来先服务算法(FCFS)
(2)最短寻道时间优先算法(SSTF)
(3)扫描算法(SCAN)
(4)循环扫描算法(CSCAN)
本设计中可在运行时随机产生一个请求序列,先把序列排序,以方便找到下一个要寻找的磁道。要求用户选择磁头移动方向,向里和向外移动用1和0表示,若输入值不为0或1,则报错。选择某种调度算法后,要求显示调度顺序和移动的总磁道数。
代码片段和文件信息
// BIJIAO.cpp: implementation of the BIJIAO class.
//
//////////////////////////////////////////////////////////////////////
#include “stdafx.h“
#include “test04.h“
#include “BIJIAO.h“
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
BIJIAO::BIJIAO()
{
}
BIJIAO::~BIJIAO()
{
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 526 2009-12-29 08:40 test\BIJIAO.cpp
文件 602 2009-12-29 08:56 test\BIJIAO.h
文件 528 2009-12-29 10:07 test\BIJIAO1.cpp
文件 616 2009-12-29 11:52 test\BIJIAO1.h
文件 0 2009-12-25 15:55 test\hanshu.cpp
文件 729 2009-12-25 17:07 test\hanshu.h
文件 13470 2009-12-27 19:24 test\RCa02644
文件 3579 2009-12-25 11:33 test\ReadMe.txt
文件 1078 2009-12-25 11:33 test\res\test04.ico
文件 398 2009-12-25 11:33 test\res\test04.rc2
文件 2018 2009-12-28 21:34 test\resource.h
文件 2537 2009-12-29 12:50 test\SortListCtrl.cpp
文件 1427 2007-02-01 13:03 test\SortListCtrl.h
文件 208 2009-12-25 11:33 test\StdAfx.cpp
文件 1054 2009-12-25 11:33 test\StdAfx.h
文件 23024 2009-12-31 14:49 test\test04.aps
文件 2269 2009-12-31 15:02 test\test04.clw
文件 2063 2009-12-25 11:33 test\test04.cpp
文件 4479 2009-12-29 12:50 test\test04.dsp
文件 520 2009-12-25 11:33 test\test04.dsw
文件 1324 2009-12-25 11:33 test\test04.h
文件 107520 2009-12-31 15:02 test\test04.ncb
文件 51712 2009-12-31 15:02 test\test04.opt
文件 725 2009-12-29 14:04 test\test04.plg
文件 7980 2009-12-28 23:00 test\test04.rc
文件 1798 2009-12-29 09:16 test\Test041.cpp
文件 1378 2009-12-29 09:13 test\Test041.h
文件 16572 2009-12-29 14:04 test\test04Dlg.cpp
文件 1901 2009-12-29 13:02 test\test04Dlg.h
目录 0 2009-12-28 21:13 test\res
............此处省略4个文件信息
- 上一篇:数据结构课程设计 校园导航专业版
- 下一篇:高速缓存文件读写.cpp
评论
共有 条评论