实验一 高响应比作业调度
1 .实验目的和要求
(1)掌握高响应比作业调度的概念和算法。
(2)加深对处理机分配的理解。
2 .实验内容
在Visual C++ 6.0集成开发环境下使用C语言,利用相应的Win32
API函数﹐编写程序实现作业高响应比调度算法,学会运行程序和中断当前程序的运行。
3 .实验原理与提示
作业调度的实现主要有两个问题:一个是如何将系统中的作业组织起来﹔另一个是如何进行作业调度。
高响应比作业调度法(HRN)是对FCFS方式和SJF方式的一-种综合平衡。HRN调度策略同时考虑每个作业的等待时间长短和估计需要的执行时间长短﹐从中选出响应比最高的作业投人执行。
响应比R定义如下: R=( W+T)/T =1+W / T 其中,T为该作业估计需要的执行时间,W为作业在后备状态队列中的等待时间。
每当要进行作业调度时,系统计算每个作业的响应比,选择其中R最大者投入执行。这样,即使是长作业,随着它等待时间的增加,W/T也就随着增加﹐也就有机会获得调度执行。这种算法是介于FCFS和SJF之间的一种折中算法。由于长作业也有机会投入运行,在同一时间内处理的作业数显然要少于SJF算法﹐从而采用HRN方式时其吞吐量将小于采用SJF法时的吞吐量。另外,由于每次调度前要计算响应比,系统开销也要相应增加。
参考代码
#include<malloc.h>
#include<stdio.h>
#include<string.h>
#define NULL 0
#define N 10
typedef struct table
{
char name[8]; /*作业名*/
float in_well; /*进入输入井时间*/
float begin_run; /*开始运行时间*/
float run_time; /*运行时间*/
float end_run; /*结束运行时间*/
float turnover_time; /*周转时间*/
}jobtable;
void init(jobtable job[],int n) /*初始化作业表*/
{
int i,j;
printf("input %d job information\n",n);
printf("in_well run_time name\n");
for(i=0;i<n;i++)
{
scanf("%f %f %s",&job[i].in_well,&job[i].run_time,job[i].name);
job[i].begin_run=0.0;
job[i].end_run=0.0;
job[i].turnover_time=0.0;
}
}
void print(jobtable job[],int n) /*输出链表*/
{ int i;
printf("name in_well run_time begin_run end_run turnover_time\n");
for(i=0;i<n;i++)
{
printf("%s\t%0.1f\t%0.1f\t",job[i].name,job[i].in_well,job[i].run_time);
if(job[i].begin_run==0.0&&job[i].end_run==0.0&&job[i].turnover_time==0.0)
printf(" \n");
else
printf("%9.1f%9.1f\t%0.1f\n",job[i].begin_run,job[i].end_run,job[i].turnover_time);
}
}
void swap(jobtable job[],int p,int q)
{
float temp1;
char temp2[8];
strcpy(temp2,job[p].name);strcpy(job[p].name,job[q].name);strcpy(job[q].name,temp2);
temp1=job[p].in_well;job[p].in_well=job[q].in_well;job[q].in_well=temp1;
temp1=job[p].run_time;job[p].run_time=job[q].run_time;job[q].run_time=temp1;
}
float response_ratio(jobtable job[],int n) /*模拟当前作业表的调度过程*/
{
int i,j,temp;
float average_time,ratio1,ratio2;
job[0].begin_run=job[0].in_well;
job[0].end_run=job[0].begin_run+job[0].run_time;
job[0].turnover_time=job[0].end_run-job[0].begin_run;
average_time=job[0].turnover_time;
for(i=1;i<n;i++)
{
if(job[i].in_well<=job[i-1].end_run)
{
j=i+1;temp=i;
ratio1=1+(job[i-1].end_run-job[i].in_well)*1.0/job[i].run_time;
while(j<n && job[j].in_well<+job[i-1].end_run)
{
ratio2=1+(job[i-1].end_run-job[j].in_well)*1.0/job[j].run_time;
if(ratio2>ratio1)temp=j;
j++;
}
if(temp!=i)
swap(job,i,temp);
}
job[i].begin_run=job[i-1].end_run;
job[i].end_run=job[i].begin_run+job[i].run_time;
job[i].turnover_time=job[i].end_run-job[i].in_well;
average_time=average_time+job[i].turnover_time;
}
return(average_time/n);
}
void main()
{
int n;
float ave_turnover_time;
jobtable job[N];
printf("input job numbers\n");
scanf("%d",&n);
if(n<=N)
{
printf("按照进入输入井的先后顺序初始化作业表\n");
init(job,n);
printf("initial station \n");
print(job,n);
ave_turnover_time=response_ratio(job,n);
printf("termination station \n");
print(job,n);
printf("ave_turnover_time is:%12.f\n",ave_turnover_time);
}
else
printf("error!\n");
}
运行结果: