Documentation
CPU Scheduler Logo

Welcome to our CPU Process Scheduler

Hello! and Welcome to our CPU Process Scheduler
This scheduler has been implemented using HTML, CSS, and JavaScript.
Below are the functionalities implemented:

This further prints Gantt Chart for each algorithm by default

First-Come, First-Served (FCFS)

First-Come, First-Served (FCFS) is a scheduling algorithm that executes processes in the order they arrive.

Shortest Job First (SJF)

Shortest Job First (SJF) is a scheduling algorithm that executes processes with the shortest burst time first.

Shortest Remaining Time First (SRTF)

Shortest Remaining Time First (SRTF) is a preemptive version of SJF that executes processes with the shortest remaining time first.

Round Robin (RR)

Round Robin (RR) is a scheduling algorithm where each process is assigned a fixed time slice in a cyclic order.

Priority Scheduling

Priority Scheduling is a scheduling algorithm where each process is assigned a priority. The process with the highest priority is executed first.