Skip to content

Commit a191ced

Browse files
authored
added image
1 parent f6a21d4 commit a191ced

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# CPU Scheduling Algorithms
2+
![image](https://github.com/coderatul/cpu-sheduling/assets/72141859/8efac342-4365-496c-b446-a1644fdc1f7a)
3+
24

35
This GitHub repository contains Python implementations of various CPU scheduling algorithms. The current implementation includes the First Come First Serve (FCFS) algorithm.
46

@@ -24,8 +26,9 @@ bt = [8, 1, 3, 2, 6] # burst time
2426
schedule = CpuScheduling(prcs, at, bt)
2527
schedule.fcfs()
2628
```
27-
2829
### Output
30+
![image](https://github.com/coderatul/cpu-sheduling/assets/72141859/4017f4a0-d374-42d4-8e10-6cf3ae622b56)
31+
2932

3033
The FCFS algorithm will display the order of process execution, completion time, turn around time, and waiting time in a tabular format.
3134

0 commit comments

Comments
 (0)