Disk Scheduling

When disk requests arrive at the disk device, they are queued for service and a disk scheduling algorithm is used to decide which of a waiting queue of disk requests to serve next.

Parameters

  • nn: number of requests

Related Problems


Filters

Computational Model

Randomization

Approximation

Algorithms Table

Displaying 6 of 6 algorithms

See more
FCFS1979O(n)O(n)O(1)O(1)
SSTF1979O(nlogn)O(n \log n) with binary treeO(n)O(n)
SCAN1979O(nlogn)O(n \log n)O(n)O(n)
LOOK1979O(nlogn)O(n \log n)O(n)O(n)
C-SCAN1979O(nlogn)O(n \log n)O(n)O(n)
C-LOOK1979O(nlogn)O(n \log n)O(n)O(n)

Reductions Table

Insuffient Data to display table

Other relevant algorithms

Insuffient Data to display table