资源简介
编写并调试一个综合使用作业调度和进程调度模拟的作业调度程序,采用“简单时间片轮转法”调度算法为多道批处理系统设计一个作业调度程序。
(1)、编写并调试一个多道批处理系统设计一个作业调度程序
(2)、作业调度算法:先来先服务。进程调度算法:时间片轮转法。
(3)、由于在多道批处理系统中,内存中有多道作业等待运行,占有计算机的地切资源直到作业完成为止,因此调度作业时需要考虑它所需要的资源时否得到满足,它所占用的CPU时限问题。
(4)、对每种调度算法都要求打印每个作业的开始运行时刻,完成时刻,周转时间,带权周转时间,以及这组作业的平均周转时间及平均带权周转时间。
代码片段和文件信息
// Queue.cpp: implementation of the CQueue class.
//
//////////////////////////////////////////////////////////////////////
#include “stdafx.h“
#include “模拟作业调度与进程调度.h“
#include “Queue.h“
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CQueue::CQueue()
{
}
CQueue::~CQueue()
{
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4420 2010-07-08 16:30 模拟作业调度与进程调度\Debug\Queue.obj
文件 106151 2010-07-09 21:03 模拟作业调度与进程调度\Debug\StdAfx.obj
文件 222208 2011-06-25 17:57 模拟作业调度与进程调度\Debug\vc60.idb
文件 364544 2010-07-10 13:30 模拟作业调度与进程调度\Debug\vc60.pdb
文件 123006 2010-07-10 13:30 模拟作业调度与进程调度\Debug\模拟作业调度与进程调度.exe
文件 229696 2010-07-10 13:30 模拟作业调度与进程调度\Debug\模拟作业调度与进程调度.ilk
文件 16942 2010-07-09 22:11 模拟作业调度与进程调度\Debug\模拟作业调度与进程调度.obj
文件 5629512 2010-07-09 21:03 模拟作业调度与进程调度\Debug\模拟作业调度与进程调度.pch
文件 418816 2010-07-10 13:30 模拟作业调度与进程调度\Debug\模拟作业调度与进程调度.pdb
文件 5108 2010-07-10 13:24 模拟作业调度与进程调度\Debug\模拟作业调度与进程调度.res
文件 203 2010-07-07 15:30 模拟作业调度与进程调度\Debug\模拟作业调度与进程调度.sln
..A..H. 7168 2010-07-07 15:30 模拟作业调度与进程调度\Debug\模拟作业调度与进程调度.suo
文件 71942 2010-07-10 13:30 模拟作业调度与进程调度\Debug\模拟作业调度与进程调度Dlg.obj
文件 142 2010-07-09 11:11 模拟作业调度与进程调度\job1.txt
文件 26 2010-07-09 11:03 模拟作业调度与进程调度\job2.txt
文件 143 2010-07-10 07:27 模拟作业调度与进程调度\job3.txt
文件 540 2010-07-08 16:27 模拟作业调度与进程调度\Queue.cpp
文件 1051 2010-07-08 16:30 模拟作业调度与进程调度\Queue.h
文件 3807 2010-07-03 08:54 模拟作业调度与进程调度\ReadMe.txt
文件 1078 2010-07-03 08:54 模拟作业调度与进程调度\res\模拟作业调度与进程调度.ico
文件 414 2010-07-03 08:54 模拟作业调度与进程调度\res\模拟作业调度与进程调度.rc2
文件 3046 2010-07-07 14:14 模拟作业调度与进程调度\resource.h
文件 224 2010-07-03 08:54 模拟作业调度与进程调度\StdAfx.cpp
文件 1054 2010-07-03 08:54 模拟作业调度与进程调度\StdAfx.h
文件 9 2010-07-05 15:00 模拟作业调度与进程调度\_ReSharper.模拟作业调度与进程调度\CachesImage.bin
文件 4 2010-07-05 15:00 模拟作业调度与进程调度\_ReSharper.模拟作业调度与进程调度\TodoCache\.version
文件 4 2010-07-05 15:00 模拟作业调度与进程调度\_ReSharper.模拟作业调度与进程调度\WebsiteFileReferences\.version
文件 4 2010-07-05 15:00 模拟作业调度与进程调度\_ReSharper.模拟作业调度与进程调度\WordIndex.New\.version
文件 77 2010-07-05 16:08 模拟作业调度与进程调度\_ReSharper.模拟作业调度与进程调度\Xaml\CacheProvider.dat
文件 561 2010-07-05 16:08 模拟作业调度与进程调度\模拟作业调度与进程调度.4.5.resharper.user
............此处省略26个文件信息
评论
共有 条评论