操做系統進程調度模擬程序(基於優先級調度和時間片輪轉調度算法)

  #include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> /*進程控制塊數據結構*/ typedef struct node  {   char name[10];/*進程名*/  int prio;     /*進程優先級*/   int round;    /*進程分配的時間片*/   int
相關文章
相關標籤/搜索