Skip to content

Instantly share code, notes, and snippets.

@tuxxi
tuxxi / README.md
Last active December 7, 2022 20:13
@tuxxi
tuxxi / disk_scheduling.py
Created March 8, 2019 00:11
Operating System Concepts -- Disk Scheduling
from heapq import heappush, heappop
def FCFS(hp, reqs):
pos = hp
order = [hp]
time = 0
# simply process the reqs list in order
for req in reqs: