时间片轮转调度,这程序我真改不对了,改了N次,大神帮看下吧
#include <stdio.h>#include <stdlib.h>
#include <string.h>
#include <iostream.h>
typedef struct node
{
char name[10];
int prio;
int round;
int cputime;
int needtime;
int gettime;
int count;
char state;
struct node *next;
}PCB;
PCB *finish,*ready,*tail,*run; //队列指针
int N; //进程数
void firstin()
{
run=ready; //就绪队列头指针赋值给运行头指针
run->state='R'; //进程状态变为运行态
ready=ready->next; //就绪队列头指针后移到下一进程
}
void interrupt()//第一个CPU占用时间等于下一个进程的到达时间
{
if(ready->cputime==(ready->next)->gettime)
{
ready=ready->next;
ready->state='W';
}
}
//输出标题函数
void prt1(char a)
{
if(toupper(a)=='P') //优先级法
cout<<" "<<endl;
cout<<"进程名 到达的时间 占用CPU时间 到完成还要的时间 轮转时间片 状态"<<endl;
}
//进程PCB输出
void prt2(char a,PCB *q)
{
if(toupper(a)=='P') //优先级法的输出
cout<<q->name<<" "<<q->gettime<<" "<<q->cputime<<" "<<q->needtime<<" "<<q->round<<" "<<q->state<<endl;
}
//输出函数
void prt(char algo)
{
PCB *p;
prt1(algo); //输出标题
if(run!=NULL) //如果运行指针不空
prt2(algo,run); //输出当前正在运行的PCB
p=ready; //输出就绪队列PCB
while(p!=NULL)
{
prt2(algo,p);
p=p->next;
}
p=finish; //输出完成队列的PCB
while(p!=NULL)
{
prt2(algo,p);
p=p->next;
}
getchar(); //按住任意键继续
}
//时间片轮转的插入算法
void insert(PCB *q)
{
PCB *p1,*s,*r;
s=q; //待插入的PCB指针
p1=ready; //就绪队列头指针
r=p1; //*r做p1的前驱指针
while(p1!=NULL)
if(p1->round<=s->round)
{
r=p1;
p1=p1->next;
}
if(r!=p1)
{
r->next=s;
s->next=p1;
}
else
{
s->next=p1; //否则插入在就绪队列的头
ready=s;
}
}
//优先级创建初
void create(char alg)
{
PCB *p;
int i,gettime,time;
char na[10];
ready=NULL;
finish=NULL;
run=NULL;
cout<<"输入进程名,到达时间及其需要运行的时间:"<<endl;
for(i=1;i<=N;i++)
{
p=new PCB;
cin>>na;
cin>>gettime;
cin>>time;
strcpy(p->name,na);
p->cputime=0;
p->gettime=gettime;
p->needtime=time;
if(gettime=0){p->state='W';}
else {p->state='F';}
p->round=0;
if(ready!=NULL)
insert(p);
else
{
p->next=ready;
ready=p;
}
cout<<"输入进程名,到达时间及其需要运行的时间:"<<endl;
}
prt(alg);
run=ready;
ready=ready->next;
run->state='R';
}
void timeslicecycle(char alg)
{cout<<"请输入时间片长度:";
int pertime;
cin>>pertime;
cout<<"输入时间片长度:"<<pertime<<endl;
while(run!=NULL)
{
if(run->needtime>pertime)
{
run->cputime=run->cputime+pertime;
run->needtime=run->needtime-pertime;
run->round=run->round+pertime;
run->state='W';
interrupt();
insert(run);
interrupt();
firstin();
}
else
{ int replace1,replace2;
replace1=0;
replace2=run->needtime;
run->cputime=run->cputime+replace2;
run->needtime=replace1;
run->round=run->round+replace2;
run->next=finish;
finish=run;
run->state='F';
run=NULL;
interrupt();
if(ready!=NULL)
firstin();
}
prt(alg);
}
}
//主函数
void main()
{
char algo='P'; //算法标记
cout<<"输入进程的个数:";
cin>>N; //输入进程数
create(algo); //创建进程
timeslicecycle(algo); //优先级法调度
} //main()
这个代码,想要的结果,我打个比方,
输入进程的个数:4
输入进程名,到达时间及其需要运行的时间:
a 0 5
输入进程名,到达时间及其需要运行的时间:
b 1 3
输入进程名,到达时间及其需要运行的时间:
c 2 1
输入进程名,到达时间及其需要运行的时间:
d 3 6
进程名 到达的时间 占用cpu时间 到完成还要得时间 轮转时间片 状态
a 0 0 5 0 W
b 1 0 3 0 F
c 2 0 1 0 F
d 3 0 6 0 F
输入时间片长度:2
输入时间片长度为:2
进程名 到达的时间 占用cpu时间 到完成还要得时间 轮转时间片 状态
b 1 0 3 0 R
c 2 0 1 0 W
a 0 2 3 2 W
d 3 0 6 0 F
进程名 到达的时间 占用cpu时间 到完成还要得时间 轮转时间片 状态
c 2 0 1 0 R
a 0 2 3 2 W
d 3 0 6 0 W
b 1 2 1 2 W
进程名 到达的时间 占用cpu时间 到完成还要得时间 轮转时间片 状态
a 0 2 3 2 R
d 3 0 6 0 W
b 1 2 1 2 W
c 2 1 0 1 F
进程名 到达的时间 占用cpu时间 到完成还要得时间 轮转时间片 状态
d 3 0 6 0 R
b 1 2 1 2 W
c 2 1 0 1 F
a 0 4 1 4 W
进程名 到达的时间 占用cpu时间 到完成还要得时间 轮转时间片 状态
b 1 2 1 2 R
c 2 1 0 1 F
a 0 4 1 4 W
d 3 2 4 2 W
进程名 到达的时间 占用cpu时间 到完成还要得时间 轮转时间片 状态
a 0 4 1 4 R
d 3 2 4 2 W
b 1 3 0 3 F
c 2 1 0 1 F
进程名 到达的时间 占用cpu时间 到完成还要得时间 轮转时间片 状态
d 3 2 4 2 R
a 0 5 0 5 F
b 1 3 0 3 F
c 2 1 0 1 F
进程名 到达的时间 占用cpu时间 到完成还要得时间 轮转时间片 状态
d 3 4 2 4 R
a 0 5 0 5 F
b 1 3 0 3 F
c 2 1 0 1 F
进程名 到达的时间 占用cpu时间 到完成还要得时间 轮转时间片 状态
d 3 6 0 6 F
a 0 5 0 5 F
b 1 3 0 3 F
c 2 1 0 1 F
调度完成。。是这样一个意思
改了N次了,就是改不到我想要的这种效果。。
求高手
求高手 高手。。。