As discussed in the class, please finish the three functions:
(1) public static void FCFS(List
Complete it by computing the average response time and througput.
(2) public static void SJF_preemptive(List
Complete this function by using shortest job first algorithm in preemptive mode. You need to compute the average waiting time, average response time and throughput and print them out.
– Processes are executed in the correct order (25%)
– Correctly print out the average waiting time, average response time and throughput. (15%)
(3) public static void multiLevel_FB(List
Complete this function by using multi-level feedback algorithm. You need to compute the average waiting time, average response time and throughput and print them out.
– Processes are executed in the correct order (25%)
– Correctly print out the average waiting time, average response time and throughput. (15%)
Submission:
Feel free to modify the Process class as needed. So after you finish the code, you only need to turn in the “CPUscheduling.java” file