作業調度主要有FIFO
模擬最高響應比優先作業調度算法
輸入
每個作業包括三個數據項
作業號
參數用空格隔開
其中調度時刻為最後一個作業到達系統的時間!
輸出作業號!進入內存的時間!每行輸出一個作業信息
本程序包括:FIFO
VC++調試通過
(C)copyright by Neo
歡迎大家測試 請問題請Email:sony
*/
#include
#include
#include
#include
const int MAXJOB=
//定義數據結構體
typedef struct node{
int number;
int reach_time;
[
From:http://tw.wingwit.com/Article/program/czxt/201311/24018.html