Look disk scheduling
The LOOK algorithm is a disk scheduling algorithm that scans the disk from the current position of the disk arm to the last request in one direction and then moves back to the first request in the opposite direction.
The LOOK algorithm is designed to reduce the seek time by minimizing the distance the disk arm has to travel to service a request. The algorithm schedules the requests in such a way that the disk arm moves continuously in one direction without any backtracking, which indirectly improves performance by maximizing throughput and reducing the total time required to access and retrieve data from the disk.
Functionality
Advantages & Disadvantages
Advantages :
Disadvantages :
Functionality
C-LOOK (Circular LOOK) is a disk scheduling algorithm that aims to minimize disk arm movement and reduce seek time by optimizing the order in which disk I/O requests are serviced. It operates similarly to LOOK but with a circular scanning pattern, hence the name "C-LOOK."
C-LOOK starts servicing requests at one end of the disk and scans in one direction until it encounters the last request in that direction. Instead of reversing direction immediately, as in LOOK, C-LOOK reverses direction only after reaching the end of the disk. This circular pattern avoids unnecessary arm movement to the beginning of the disk, resulting in reduced seek time.