Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 359 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 359 Bytes

Mini-Scheduler

An OS scheduler simulator and a memory allocator.


Algorithms Implemented for Scheduling:

  • First Come First Serve
  • Shortest Job First
  • Preemtive Highest Priority First
  • Shortest Remaining Time Next
  • Round Robin

Algorithms Implemented for Memory Allocation:

  • First Fit
  • Next Fit
  • Best Fit
  • Buddy System Allocation