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

https://github.com/pal8304/scheduling_algorithms

A simulator of scheduling algorithms for OS project
https://github.com/pal8304/scheduling_algorithms

reactjs scheduling-algorithms

Last synced: over 1 year ago
JSON representation

A simulator of scheduling algorithms for OS project

Awesome Lists containing this project

README

          

# Scheduling Algorithms Simulator

View live at [
https://scheduling-algorithms-rnud.vercel.app/
](https://scheduling-algorithms-rnud.vercel.app/)

This project is a simulator for CPU scheduling algorithms. It is built using React and TypeScript.

Algorithms implemented:
- [x] First Come First Serve (FCFS)
- [x] Shortest Job First Preemptive (SJF-P)
- [x] Shortest Job First Non-Preemptive (SJF-NP)
- [x] Round Robin (RR)
- [ ] Priority Scheduling Preemptive
- [ ] Priority Scheduling Non-Preemptive

Stuff to do:

- [ ] Implement Priority Scheduling Algos
- [ ] Add animations to the gantt chart