动态优先级调度

#include"stdio.h" #include"stdlib.h" #include"string.h" typedef struct node { char name[10]; //进程标志符 int prio; //进程优先数 int cputime; //进程占用cpu时间 int needtime; //进程到完成还要的时间 char state; //进程的状态 struct no
相关文章
相关标签/搜索