操作系统时间片轮转算法与优先级调度算法.pdf
#include "stdio.h" #include "stdlib.h" #include "string.h" typedef struct node { char name[10]; /* 进程标识符 */ int prio; /* 进程优先数 */ int round; /* 进程时间轮转时间片 */ int cputime; /* 进程占用 CPU 时间 */ int needtim
下载地址
用户评论