An open API service indexing awesome lists of open source software.

https://github.com/aashutoshrathi/scheduling-algorithms

A basic Python implementation of FCFS, SJF and Round Robin
https://github.com/aashutoshrathi/scheduling-algorithms

os-mini python scheduling-algorithms

Last synced: over 1 year ago
JSON representation

A basic Python implementation of FCFS, SJF and Round Robin

Awesome Lists containing this project

README

          

# scheduling-algorithms

OS Mini Project 2

This repository consist of basic implementation of 3 scheduling algorithms
- FCFS
- SJF with Preemption
- Round Robin Algorithm

### Test data will be of type:

```
Eg:
P1 0 7 1 5 1
P2 2 2 2 6 3
P3 3 5 1 35 2
P4 6 2 2 2 4

```