操做系统进程调度模拟程序(基于优先级调度和时间片轮转调度算法)

  #include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> /*进程控制块数据结构*/ typedef struct node  {   char name[10];/*进程名*/  int prio;     /*进程优先级*/   int round;    /*进程分配的时间片*/   int
相关文章
相关标签/搜索