摘要: #include "stdio.h" #include "stdlib.h" #include "string.h" typedef struct node { char name[10]; /*进程标识符*/ int prio; /*进程优先数*/ int round; /*进程时间轮转时间片*/ int cputime; /*进程占用CPU时间*/ in... 阅读全文
posted @ 2018-03-14 10:54 little——boy 阅读(1706) 评论(0) 推荐(0) 编辑