实现了os中优先调度的算法 typedef struct node { char name; int Y;//优先数 int time;//要求运行时间 char Z;//状态 struct node *next; }node,*list;