Disk Scheduling (Disk Scheduling)

From Algorithm Wiki
Revision as of 10:09, 28 April 2023 by Admin (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Description

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

$n$: number of requests

Table of Algorithms

Name Year Time Space Approximation Factor Model Reference
FCFS 1979 $O(n)$ $O({1})$ Exact Deterministic
SSTF 1979 $O(n \log n)$ with binary tree $O(n)$ Exact Deterministic Space
SCAN 1979 $O(n \log n)$ $O(n)$ Exact Deterministic Space
LOOK 1979 $O(n \log n)$ $O(n)$ Exact Deterministic
C-SCAN 1979 $O(n \log n)$ $O(n)$ Exact Deterministic
C-LOOK 1979 $O(n \log n)$ $O(n)$ Exact Deterministic

Time Complexity Graph

Disk Scheduling - Time.png