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
- Host: GitHub
- URL: https://github.com/aashutoshrathi/scheduling-algorithms
- Owner: aashutoshrathi
- License: mit
- Created: 2017-11-15T18:43:29.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-16T06:07:51.000Z (over 8 years ago)
- Last Synced: 2025-02-28T16:03:39.823Z (over 1 year ago)
- Topics: os-mini, python, scheduling-algorithms
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```