OS Visualizations
CPU Scheduling
Address Translation
Memory Allocation
Page Replacement
File Allocation
Disk Scheduling
Submit
START
Sign up
Log in
Input: (Example Data:
1,0,10,3 2,2,1,1 3,4,2,4 4,3,1,5 5,5,2,2
)
1,0,10,3 2,2,1,1 3,4,2,4 4,3,1,5 5,5,2,2
Output fcfs:
1,0,10 2,10,11 3,11,12 4,12,14 5,14,16
Output sjf:
1,0,10 2,10,11 3,11,12 4,12,14 5,14,16
Output sjf-p:
1,0,2 2,2,3 4,3,4 3,4,6 5,6,8 1,8,16
Output priority:
1,0,10 2,10,11 5,11,13 3,13,15 4,15,16
Output priority-p:
1,0,2 2,2,3 1,3,5 5,5,7 1,7,13 3,13,15 4,15,16
Output roundrobin:
1,0,2 2,2,3 4,3,4 3,4,6 5,6,8 1,8,10 1,10,12 1,12,14 1,14,16
Submit
Cancel