Experience different disk scheduling algorithms in action.

Simulator

Disk Scheduling Algorithms

FCFS (First Come First Serve)

Imagine you are standing in a queue at a grocery store. The cashier serves the customers one by one in the order they arrived. The first person who comes to the queue gets served first, the second person goes next, and so on.

SSTF (Shortest Seek Time First)

Imagine you are standing in the middle of a long hallway with multiple rooms on both sides. Your job is to deliver packages to these rooms, but you can choose the order in which you deliver them. Naturally, you would deliver to the closest room first to minimize walking distance, right?

SCAN (Elevator Algorithm)

Imagine you are standing in a long hallway with multiple rooms on both sides. Your job is to deliver packages to these rooms, but you can only move in one direction at a time. You start at one end, deliver packages to the rooms, and then reverse direction to deliver the remaining packages.

C-SCAN (Circular Elevator Algorithm)

Imagine you are a bus driver following a fixed route. You start picking up passengers from one end of the city and move towards the other end, stopping at all bus stops along the way. Once you reach the last stop, instead of turning back and picking up passengers on the way back, you go straight to the first stop and start over.