It is a basic simulator that taked input from user and simulate CPU scheduling algorithms using gantt chart
- First Come First serve : Process that arrive first get CPU first
- Shortest Job First without Preemption: Process with shortest CPU time get CPU first.
- Shortest Job First with Preemption: Process with shortest remaining CPU time get CPU first.
- Round Robin: All processes get CPU for some fixed time.
- Data structures implemented in javaScript
- Min Heap/Priority Queue
- Queue
- About.html contains developers page
- Algo.html contains template for each algorithm
- js/draw.js draws gantt chart for each algorithm
