版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、#include<stdio.h>#include<stdlib.h>#include <conio.h>#include<math.h>#define N 20#define MAX 100typedef struct PCB /pcb進(jìn)程控制塊定義 int numN; /進(jìn)程序號(hào) char name10; /進(jìn)程名 char state; /進(jìn)程狀態(tài) int tijiaotime; /進(jìn)程到達(dá)時(shí)間 int runtime; /進(jìn)程開始時(shí)間 int finishtime; /進(jìn)程結(jié)束時(shí)間 int needtime; /服務(wù)時(shí)間 int pro;
2、/進(jìn)程優(yōu)先級(jí) struct PCB *next; /鏈接指針 指向下個(gè)作業(yè)的pcb;struct PCB *head_input;struct PCB *head_run;struct PCB *head_run_pre;unsigned long current; /記錄系統(tǒng)當(dāng)前時(shí)間的變量int time=10000,n; /計(jì)時(shí)器 pcb *head=NULL,*p,*q;void getInfo() /創(chuàng)建進(jìn)程 int num; printf("n請(qǐng)輸入要建立的進(jìn)程個(gè)數(shù):"); scanf("%d",&n); for(num=0;num&l
3、t;n;num+) p=(pcb *)malloc(sizeof(pcb); if(head=NULL) head=p;q=p; printf("依次輸入:n進(jìn)程號(hào) 進(jìn)程名 到達(dá)時(shí)間 服務(wù)時(shí)間 n"); scanf("%st%st%dt%d",&p->num,&p->name,&p->tijiaotime,&p->needtime); if(p->tijiaotime < time) time=p->tijiaotime; q->next=p; p->runtime=0
4、; p->finishtime=0; p->next=NULL; p->state='W' q=p; / *1.先來先服務(wù)調(diào)度算法*void run_fcfo(pcb *p1)/定義先來先到服務(wù)的算法 time = p1->tijiaotime > time? p1->tijiaotime:time; p1->runtime=time; printf("n現(xiàn)在時(shí)間是%d,開始運(yùn)行進(jìn)程%sn",time,p1->name); time+=p1->needtime; p1->state='F
5、39; p1->finishtime=time; printf("進(jìn)程名 開始時(shí)間 所需時(shí)間 結(jié)束時(shí)間n"); printf("%s %d %d %d ",p1->name,p1->runtime,p1->needtime,p1->finishtime);void fcfo()/定義運(yùn)行進(jìn)程函數(shù) int i,j,t; for(j=0;j<n;j+) p=head; t=10000; for(i=0;i<n;i+) /找到當(dāng)前未完成的進(jìn)程 if(p->tijiaotime<t && p-
6、>state='W') t=p->tijiaotime; q=p; /標(biāo)記當(dāng)前未完成的進(jìn)程 p=p->next; run_fcfo(q); / *2.優(yōu)先級(jí)調(diào)度服務(wù)算法*int readydata() /建立就緒隊(duì)列 if(head_input->next=NULL) return 0; struct PCB *p1=head_input->next,*pmax,*p2; int maxpro=0xffff; pmax=p1; p2=head_input; while(p1!=NULL) if(p1->pro<maxpro) maxpr
7、o=p1->pro; head_run_pre=p2;pmax=p1; p2=p1; p1=p1->next; head_run=pmax; head_run_pre->next=head_run->next; return 1;void runprocess() /運(yùn)行進(jìn)程函數(shù) head_run->runtime-=10; head_run->pro+; struct PCB *p1,*p2; printf("時(shí)間片的大小 %d",current); current+=10; printf(" %s 開始n",hea
8、d_run->name); printf("時(shí)間片的大小 %d",current); printf(" %s 結(jié)束n",head_run->name); if(head_run->runtime<=0) /判斷進(jìn)程是否運(yùn)行結(jié)束 else p1=head_input; p2=head_input->next; p1->next=head_run; head_run->next=p2; int readyprocess() while(1) if(readydata()=0) return 0; else runpr
9、ocess(); void Init() head_input=new PCB; head_input->next=NULL; current=0; int numpro; printf("請(qǐng)重新輸入要建立的進(jìn)程個(gè)數(shù):"); scanf("%d",&numpro); printf("請(qǐng)依次輸入 進(jìn)程名 運(yùn)行時(shí)間 優(yōu)先級(jí)n"); for(int i=0;i<numpro;i+) struct PCB *p1=new PCB; scanf("%s",p1->name); scanf("
10、;%d",&p1->runtime); scanf("%d",&p1->pro); p1->state='C' p1->next=NULL; struct PCB *p2=head_input->next; head_input->next=p1; p1->next=p2; / *3.時(shí)間片輪轉(zhuǎn)調(diào)度服務(wù)算法*void shijianpian()int b,i,X,t,k;int aMAX;/存放進(jìn)程的剩余時(shí)間int cntMAX;/存放進(jìn)程調(diào)度次數(shù)printf("請(qǐng)輸入進(jìn)程數(shù):&q
11、uot;);scanf("%d",&X);printf("n請(qǐng)輸入時(shí)間片t大小:");scanf("%d",&t);printf("n請(qǐng)依次輸入各個(gè)進(jìn)程的服務(wù)時(shí)間");for(i=0;i<X;i+)scanf("%d",&ai);cnti=0;printf("被調(diào)度進(jìn)程t進(jìn)程調(diào)度次數(shù) t本次運(yùn)行時(shí)間結(jié)果t剩余時(shí)間n");k=1;while(k)for(i=0;i<X;i+)if(ai!=0)if(ai>=t) ai-=t; b+=t;
12、 cnti=cnti+1; printf("nt%dtt%dtt%dtt%d",i+1,cnti,b,ai); else b=b+ai; cnti=cnti+1; ai=0; printf("nt%dtt%dtt%dtt%d",i+1,cnti,b,ai);else continue;for(i=0;i<X;i+)if(ai!=0) k=1;break;else continue;if(i>=X) k=0;void main() printf(" *"); printf("n 1. 按先來先到服務(wù)調(diào)度的算法模擬n"); printf(" *"); getInfo(); fcfo(); printf("n *"); printf("n 2. 按優(yōu)先級(jí)調(diào)
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 【Ks5u名?!亢邶埥∧涌h高級(jí)中學(xué)2020屆高三第五次模擬語(yǔ)文試題-掃描版含答案
- 【原創(chuàng)】江蘇省宿遷市2013-2020學(xué)年高一物理(人教版)暑期作業(yè)
- 2022成都市高考英語(yǔ)單項(xiàng)選擇及閱理自練附答案1
- 五年級(jí)數(shù)學(xué)(小數(shù)除法)計(jì)算題專項(xiàng)練習(xí)及答案匯編
- 一年級(jí)數(shù)學(xué)計(jì)算題專項(xiàng)練習(xí)集錦
- 四年級(jí)數(shù)學(xué)(三位數(shù)乘兩位數(shù))計(jì)算題專項(xiàng)練習(xí)及答案
- 【同步輔導(dǎo)】2021高中數(shù)學(xué)北師大版選修2-3學(xué)案:《排列》
- 【全程復(fù)習(xí)方略】2020年高考政治一輪課時(shí)提升作業(yè)-必修2-第5課(廣東專供)
- 山東省棗莊十五中西校區(qū)2022-2023學(xué)年七年級(jí)上學(xué)期期末語(yǔ)文試卷
- 八年級(jí)英語(yǔ)下冊(cè)Module1FeelingsandimpressionsUnit1Itsmellsdelicious第2課時(shí)課件
- 2025年云南昆明經(jīng)濟(jì)技術(shù)開發(fā)區(qū)投資開發(fā)(集團(tuán))有限公司招聘筆試參考題庫(kù)附帶答案詳解
- HSE基礎(chǔ)知識(shí)培訓(xùn)
- 社會(huì)單位消防安全知識(shí)考試題庫(kù)(濃縮500題)
- 2023-2024學(xué)年廣東省廣州市花都區(qū)九年級(jí)(上)期末物理試卷(含答案)
- 安徽省蚌埠市2023-2024學(xué)年高一上學(xué)期期末考試 地理 含答案
- 2024年度托管班二人合伙協(xié)議書3篇
- 山東中醫(yī)藥大學(xué)中西醫(yī)臨床(專升本)學(xué)士學(xué)位考試復(fù)習(xí)題
- 保定學(xué)院《大學(xué)英語(yǔ)》2023-2024學(xué)年第一學(xué)期期末試卷
- 2024-2025學(xué)年九年級(jí)語(yǔ)文上冊(cè)部編版期末綜合模擬試卷(含答案)
- 鄉(xiāng)村振興暨干部素質(zhì)提升培訓(xùn)班學(xué)習(xí)心得體會(huì)
- IATF16949:2024標(biāo)準(zhǔn)質(zhì)量手冊(cè)
評(píng)論
0/150
提交評(píng)論