Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 286 Bytes

README.md

File metadata and controls

7 lines (7 loc) · 286 Bytes

cpu-scheduling

CPU scheduling(FCFS, SJF, SRJF, Round robin) in JAVA
Implement and evaluate the following scheduling algorithms:

  1. First come first served
  2. Shortest job first
  3. Shortest remaining job first (without pre‐emption)
  4. Round robin (without pre‐emption)