OS Visualizations
CPU Scheduling
Address Translation
Memory Allocation
Page Replacement
File Allocation
Disk Scheduling
Submit
START
Sign up
Log in
Input: (Example Data:
3,7,0,1,7
)
3,7,0,1,7
Output fifo:
7,7,-,-,1,1 0,7,0,-,1,2 1,7,0,1,1,3 7,7,0,1,0,3
Output lru:
7,0,-,-,1,1 0,0,7,-,1,2 1,7,7,1,1,3 7,7,7,1,0,3
Output optimal:
7,0,-,-,1,1 0,1,0,-,1,2 1,7,0,1,1,3 7,7,0,1,0,3
Output lfu:
7,1,-,-,1,1 0,0,0,-,1,2 1,7,0,1,1,3 7,7,0,1,0,3
Output mfu:
7,1,-,-,1,1 0,3,0,-,1,2 1,7,0,1,1,3 7,7,0,1,0,3
Submit
Cancel