先來先服務調度算法模擬進程

源代碼: #include<stdio.h> #include<stdlib.h>//定義進程控制塊 typedef struct PCB { char         ID[3]; //進程號 char         name[10];         //進程名 char         state; //運行狀態 int arrivetime; //到達時間 int starttime;
相關文章
相關標籤/搜索