mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
Add round_robin scheduling algorithm (#2158)
* round_robin and priority cpu scheduling algorithms * Delete priority_cpu_scheduling.py * Delete round_robin_algorithm.py * [add] cpu_scheduling_algorithms * [add] Round robin cpu scheduling algorithm * Update scheduling/round_robin_scheduling_algorithm.py Co-authored-by: Christian Clauss <cclauss@me.com> * Update scheduling/round_robin.py Co-authored-by: Christian Clauss <cclauss@me.com> * Update scheduling/round_robin_scheduling.py Co-authored-by: Christian Clauss <cclauss@me.com> * Update scheduling/round_robin_scheduling.py Co-authored-by: Christian Clauss <cclauss@me.com> * Update scheduling/round_robin.py Co-authored-by: Christian Clauss <cclauss@me.com> * Round_Robin * Update round_robin.py * Update round_robin.py * Update round_robin.py * Update round_robin.py Co-authored-by: pawanbuddy <46370996+pawanbuddy@users.noreply.github.com> Co-authored-by: Christian Clauss <cclauss@me.com>
This commit is contained in:
parent
2d3d660155
commit
e274863cda
65
scheduling/round_robin.py
Executable file
65
scheduling/round_robin.py
Executable file
|
@ -0,0 +1,65 @@
|
|||
"""
|
||||
Round Robin is a scheduling algorithm.
|
||||
In Round Robin each process is assigned a fixed time slot in a cyclic way.
|
||||
https://en.wikipedia.org/wiki/Round-robin_scheduling
|
||||
"""
|
||||
from statistics import mean
|
||||
from typing import List
|
||||
|
||||
|
||||
def calculate_waiting_times(burst_times: List[int]) -> List[int]:
|
||||
"""
|
||||
Calculate the waiting times of a list of processes that have a specified duration.
|
||||
|
||||
Return: The waiting time for each process.
|
||||
>>> calculate_waiting_times([10, 5, 8])
|
||||
[13, 10, 13]
|
||||
>>> calculate_waiting_times([4, 6, 3, 1])
|
||||
[5, 8, 9, 6]
|
||||
>>> calculate_waiting_times([12, 2, 10])
|
||||
[12, 2, 12]
|
||||
"""
|
||||
quantum = 2
|
||||
rem_burst_times = list(burst_times)
|
||||
waiting_times = [0] * len(burst_times)
|
||||
t = 0
|
||||
while 1:
|
||||
done = True
|
||||
for i, burst_time in enumerate(burst_times):
|
||||
if rem_burst_times[i] > 0:
|
||||
done = False
|
||||
if rem_burst_times[i] > quantum:
|
||||
t += quantum
|
||||
rem_burst_times[i] -= quantum
|
||||
else:
|
||||
t += rem_burst_times[i]
|
||||
waiting_times[i] = t - burst_times[i]
|
||||
rem_burst_times[i] = 0
|
||||
if done is True:
|
||||
return waiting_times
|
||||
|
||||
|
||||
def calculate_turn_around_times(
|
||||
burst_times: List[int], waiting_times: List[int]
|
||||
) -> List[int]:
|
||||
"""
|
||||
>>> calculate_turn_around_times([1, 2, 3, 4], [0, 1, 3])
|
||||
[1, 3, 6]
|
||||
>>> calculate_turn_around_times([10, 3, 7], [10, 6, 11])
|
||||
[20, 9, 18]
|
||||
"""
|
||||
return [burst + waiting for burst, waiting in zip(burst_times, waiting_times)]
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
burst_times = [3, 5, 7]
|
||||
waiting_times = calculate_waiting_times(burst_times)
|
||||
turn_around_times = calculate_turn_around_times(burst_times, waiting_times)
|
||||
print("Process ID \tBurst Time \tWaiting Time \tTurnaround Time")
|
||||
for i, burst_time in enumerate(burst_times):
|
||||
print(
|
||||
f" {i + 1}\t\t {burst_time}\t\t {waiting_times[i]}\t\t "
|
||||
f"{turn_around_times[i]}"
|
||||
)
|
||||
print(f"\nAverage waiting time = {mean(waiting_times):.5f}")
|
||||
print(f"Average turn around time = {mean(turn_around_times):.5f}")
|
Loading…
Reference in New Issue
Block a user