Home CPU Scheduling Disk Scheduling Page Replacement Deadlock


Longest Remaining Time First (LRTF)

This is a pre-emptive version of Longest Job First (LJF) scheduling algorithm. In this scheduling algorithm, we find the process with the maximum remaining time and then process it. We check for the maximum remaining time after some interval of time(say 1 unit each) to check if another process having more Burst Time arrived up to that time.

Lets try to Run and Understand how this Algorithms actually WORK