typedef struct node { char name[10]; int span;//轮转时间 int take;//占用时间 int used;//已用的时间 int need;//还需要的时间 char status;//状态 struct node *next; }PCB;