摘要: #include<stdio.h> #include<stdlib.h> #define N 100 typedef struct process { int num; int time; int start; int end; int begin; int freetime; int arrive 阅读全文
posted @ 2016-06-16 22:04 16彭庆聪 阅读(535) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<stdlib.h> #define N 100 typedef struct process { int time; char name; int end; int freetime; int arrivetime; int finish; in 阅读全文
posted @ 2016-06-16 22:00 16彭庆聪 阅读(168) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #define N 10 typedef struct process { char name; int arrive; int prio; int needTime; char state; }Process; Process a[N]; void input( 阅读全文
posted @ 2016-06-16 21:56 16彭庆聪 阅读(345) 评论(0) 推荐(0) 编辑