【文件属性】:
文件名称:短作业优先
文件大小:126KB
文件格式:DOCX
更新时间:2018-07-17 07:22:42
JSF
选择他,是个不错的选#include
#include
#include
#include
#define N 5
struct PCB
{
char name[8]; //进程名称
int arrive_time; //到达时间
int run_time; //运行时间
int turnover_time; //周转时间
int finish_time; //完成时间
bool arrive; //在一个进程的执行过程中是否有其他进程到达
bool finished; //是否执行完
};
int main()
{
struct PCB pcb[N];
int i,j,k,short_index,short_index2;
int needtime; //作为与run_time比较参数
int totaltime=0;
int total=0; //判断一个进程在执行过程中是否有其他进程到达的参数
//下面是输入进程
for ( i=0;i