欢迎来到天天文库
浏览记录
ID:20521612
大小:32.00 KB
页数:7页
时间:2018-10-12
《进程调度模拟程序设计》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、进程调度模拟程序设计编写一个进程调度程序,允许多个进程共享进程调度程序。 进程调度算法:采用最高优先数优先的调度算法(即把处理机分配给优先数最高的进程)和先来先服务算法。 每个进程有一个进程控制块(PCB)表示。进程控制块可以包含如下信息:进程名、优先数、到达时间、需要运行时间、已用CPU时间、进程状态等等。 进程的优先数及需要的运行时间可以事先人为地指定(也可以由随机数产生)。进程的到达时间为输入进程的时间。 进程的运行时间以时间片为单位进行计算。 每个进程的状态可以是就绪W(Wait)、运行R(Run)、或完成F(Finish)三种状态之一。 就绪进程获得CPU
2、后都只能运行一个时间片。用已占用CPU时间加1来表示。 如果运行一个时间片后,进程的已占用CPU时间已达到所需要的运行时间,则撤消该进程,如果运行一个时间片后进程的已占用CPU时间还未达所需要的运行时间,也就是进程还需要继续运行,此时应将进程的优先数减1(即降低一级),然后把它插入就绪队列等待CPU。 每进行一次调度程序都打印一次运行进程、就绪队列、以及各个进程的PCB,以便进行检查。 重复以上过程,直到所要进程都完成为止模拟进程调度算法用C++的代码描述:#include"iostream.h"//definepcbtypedefstructpcb{charname[1
3、0];//进程名charstate;//状态w(就绪)r(运行)f(结束)intid;//id号intsuper;//优先级intntime;//需运行的时间intrtime;//已运行的时间structpcb*next;}*pcb1;pcb1s,w;//definetwopublicedlinknode,oneiss(readyqueue),oneisw(blockedqueue)//initializetwoqueuesvoidinit(pcb1&r){r=NULL;//bothqueuesisthekindofheadindex}//printtheinformation
4、ofthereadyqueuevoidprint(){pcb1p;cout<<"您现在查看的是就绪队列的信息:";cout<<"进程号"<<"进程名"<<"优先级"<<"状态"<<"已运行时间"<<"需运行时间"<next){cout<id<<""<name<<""<super<<""<state<<""<rtime<<""<ntime<5、"您现在查看的是阻塞队列的信息";cout<<"进程号"<<"进程名"<<"优先级"<<"状态"<<"已运行时间"<<"需运行时间"<next){cout<id<<""<name<<""<super<<""<state<<""<rtime<<""<ntime<6、queueiffinshedintcheck(){pcb1p;p=s;if(p->rtime==p->ntime){p->state='F';//ifoneprocessfinshedthenchangeti'sstatecout<<"进程"<id<<"已经结束"<7、L)//thequeueisempty{r=p;}else{if(p->super>=r->super)//thesuperoftheprocesswhichwaitinserttothequeueishighterthanthesuperofthefirstprocessofthequeue{p->next=r;r=p;}else{p1=r;p2=r->next;if(p2==NULL)//onlyoneprocessinthequeue{r->next=p;}else{while(in=
5、"您现在查看的是阻塞队列的信息";cout<<"进程号"<<"进程名"<<"优先级"<<"状态"<<"已运行时间"<<"需运行时间"<next){cout<id<<""<name<<""<super<<""<state<<""<rtime<<""<ntime<6、queueiffinshedintcheck(){pcb1p;p=s;if(p->rtime==p->ntime){p->state='F';//ifoneprocessfinshedthenchangeti'sstatecout<<"进程"<id<<"已经结束"<7、L)//thequeueisempty{r=p;}else{if(p->super>=r->super)//thesuperoftheprocesswhichwaitinserttothequeueishighterthanthesuperofthefirstprocessofthequeue{p->next=r;r=p;}else{p1=r;p2=r->next;if(p2==NULL)//onlyoneprocessinthequeue{r->next=p;}else{while(in=
6、queueiffinshedintcheck(){pcb1p;p=s;if(p->rtime==p->ntime){p->state='F';//ifoneprocessfinshedthenchangeti'sstatecout<<"进程"<id<<"已经结束"<7、L)//thequeueisempty{r=p;}else{if(p->super>=r->super)//thesuperoftheprocesswhichwaitinserttothequeueishighterthanthesuperofthefirstprocessofthequeue{p->next=r;r=p;}else{p1=r;p2=r->next;if(p2==NULL)//onlyoneprocessinthequeue{r->next=p;}else{while(in=
7、L)//thequeueisempty{r=p;}else{if(p->super>=r->super)//thesuperoftheprocesswhichwaitinserttothequeueishighterthanthesuperofthefirstprocessofthequeue{p->next=r;r=p;}else{p1=r;p2=r->next;if(p2==NULL)//onlyoneprocessinthequeue{r->next=p;}else{while(in=
此文档下载收益归作者所有