1
2
49
168
271
258
#include #include #include typedef struct PCB { /*定义一个结构体数组,包括进程的信息*/ char name[20] ; float servertime; float priority; int flags; struct PCB *next ;}PCB,Linklist; struct PCB *list; insert(...