資源描述:
《操作系統(tǒng)時間片輪轉算法與優(yōu)先級調(diào)度算法.docx》由會員上傳分享,免費在線閱讀,更多相關內(nèi)容在行業(yè)資料-天天文庫。
1、#include"stdio.h"#include"stdlib.h"#include"string.h"typedefstructnode{charname[10];/*進程標識符*/intprio;/*進程優(yōu)先數(shù)*/intround;/*進程時間輪轉時間片*/intcputime;/*進程占用CPU時間*/intneedtime;/*進程到完成還要的時間*/intcount;/*計數(shù)器*/charstate;/*進程的狀態(tài)*/structnode*next;/*鏈指針*/}PCB;PCB*finish,*ready,*tail,*run;/*隊列指針*/i
2、ntN;/*進程數(shù)*//*將就緒隊列中的第一個進程投入運行*/firstin(){run=ready;/*就緒隊列頭指針賦值給運行頭指針*/run->state='R';/*進程狀態(tài)變?yōu)檫\行態(tài)*/ready=ready->next;/*就緒對列頭指針后移到下一進程*/}/*標題輸出函數(shù)*/voidprt1(chara){if(toupper(a)=='P')/*優(yōu)先數(shù)法*/printf("namecputimeneedtimeprioritystate");elseprintf("namecputimeneedtimecountroundstate")
3、;}/*進程PCB輸出*/voidprt2(chara,PCB*q){if(toupper(a)=='P')/*優(yōu)先數(shù)法的輸出*/printf("%-10s%-10d%-10d%-10d%c",q->name,q->cputime,q->needtime,q->prio,q->state);else/*輪轉法的輸出*/printf("%-10s%-10d%-10d%-10d%-10d%-c",q->name,q->cputime,q->needtime,q->count,q->round,q->state);}/*輸出函數(shù)*/voidprt(chara
4、lgo){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;}p=ready;printf("就緒隊列:");while(p!=NULL){printf("%st",p->name);p=p->next;}pr
5、intf("");p=finish;printf("完成隊列:");while(p!=NULL){printf("%st",p->name);p=p->next;}printf("");getch();/*壓任意鍵繼續(xù)*/}/*優(yōu)先數(shù)的插入算法*/insert1(PCB*q){PCB*p1,*s,*r;intb;s=q;/*待插入的PCB指針*/p1=ready;/*就緒隊列頭指針*/r=p1;/*r做p1的前驅指針*/b=1;while((p1!=NULL)&&b)/*根據(jù)優(yōu)先數(shù)確定插入位置*/if(p1->prio>=s->prio){r=p1;
6、p1=p1->next;}elseb=0;if(r!=p1)/*如果條件成立說明插入在r與p1之間*/{r->next=s;s->next=p1;}else{s->next=p1;/*否則插入在就緒隊列的頭*/ready=s;}}/*輪轉法插入函數(shù)*/insert2(PCB*p2){tail->next=p2;/*將新的PCB插入在當前就緒隊列的尾*/tail=p2;p2->next=NULL;}/*優(yōu)先數(shù)創(chuàng)建初始PCB信息*/voidcreate1(charalg){PCB*p;inti,time;charna[10];ready=NULL;/*就緒隊列頭指
7、針*/finish=NULL;/*完成隊列頭指針*/run=NULL;/*運行隊列指針*/printf("Enternameandtimeofprocess");/*輸入進程標識和所需時間創(chuàng)建PCB*/for(i=1;i<=N;i++){p=malloc(sizeof(PCB));scanf("%s",na);scanf("%d",&time);strcpy(p->name,na);p->cputime=0;p->needtime=time;p->state='W';p->prio=50-time;if(ready!=NULL)/*就緒隊列不空調(diào)用插入函數(shù)
8、插入*/insert1(p);else