/CPUSchedulingAlgorithms

Implement CPU Scheduling algorithms

Primary LanguageJava

CPU Scheduling Algorithms

This is a Final Project of Operating System Course

Input
Input file should be a CSV file that in order includes : process_id , arrival_time , cpu_time1 , io_time , cpu_time2

Algorithms that implemented in this project:

  • First Come First Serve (FCFS)
  • Shortest Job First (SJF)
  • Round Robin (RR) with time quantum 5ms