Disk Scheduling Algorithms


Project Overview

For this project, I created a Python script to quickly sort a list of processes based on various disk scheduling algorithms. The list contains the execution time of the processes and I used a simple menu to select which scheduling algorithm to use on the list. The output shows the new ordering of the processes based on the algorithm selected and the number of cylinder moves. This was helpful for understanding and studying disk scheduling algoritms for school.

Project Repo: https://github.com/Novota15/Disk-Scheduling-Algorithms

Top