Skip to content

Commit 00e279e

Browse files
authored
[mypy] Add/fix type annotations for scheduling algorithms (TheAlgorithms#4074)
* Fix mypy errors for scheduling/first_come_first_served * Fix mypy errors for scheduling/round_robin.py * Fix mypy errors for scheduling/shortest_job_first.py * Fix isort errors
1 parent 64d8504 commit 00e279e

File tree

3 files changed

+18
-19
lines changed

3 files changed

+18
-19
lines changed

scheduling/first_come_first_served.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# In this Algorithm we just care about the order that the processes arrived
33
# without carring about their duration time
44
# https://en.wikipedia.org/wiki/Scheduling_(computing)#First_come,_first_served
5-
from __future__ import annotations
5+
from typing import List
66

77

8-
def calculate_waiting_times(duration_times: list[int]) -> list[int]:
8+
def calculate_waiting_times(duration_times: List[int]) -> List[int]:
99
"""
1010
This function calculates the waiting time of some processes that have a
1111
specified duration time.
@@ -24,8 +24,8 @@ def calculate_waiting_times(duration_times: list[int]) -> list[int]:
2424

2525

2626
def calculate_turnaround_times(
27-
duration_times: list[int], waiting_times: list[int]
28-
) -> list[int]:
27+
duration_times: List[int], waiting_times: List[int]
28+
) -> List[int]:
2929
"""
3030
This function calculates the turnaround time of some processes.
3131
Return: The time difference between the completion time and the
@@ -44,7 +44,7 @@ def calculate_turnaround_times(
4444
]
4545

4646

47-
def calculate_average_turnaround_time(turnaround_times: list[int]) -> float:
47+
def calculate_average_turnaround_time(turnaround_times: List[int]) -> float:
4848
"""
4949
This function calculates the average of the turnaround times
5050
Return: The average of the turnaround times.
@@ -58,7 +58,7 @@ def calculate_average_turnaround_time(turnaround_times: list[int]) -> float:
5858
return sum(turnaround_times) / len(turnaround_times)
5959

6060

61-
def calculate_average_waiting_time(waiting_times: list[int]) -> float:
61+
def calculate_average_waiting_time(waiting_times: List[int]) -> float:
6262
"""
6363
This function calculates the average of the waiting times
6464
Return: The average of the waiting times.

scheduling/round_robin.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@
33
In Round Robin each process is assigned a fixed time slot in a cyclic way.
44
https://en.wikipedia.org/wiki/Round-robin_scheduling
55
"""
6-
from __future__ import annotations
7-
86
from statistics import mean
7+
from typing import List
98

109

11-
def calculate_waiting_times(burst_times: list[int]) -> list[int]:
10+
def calculate_waiting_times(burst_times: List[int]) -> List[int]:
1211
"""
1312
Calculate the waiting times of a list of processes that have a specified duration.
1413
@@ -41,8 +40,8 @@ def calculate_waiting_times(burst_times: list[int]) -> list[int]:
4140

4241

4342
def calculate_turn_around_times(
44-
burst_times: list[int], waiting_times: list[int]
45-
) -> list[int]:
43+
burst_times: List[int], waiting_times: List[int]
44+
) -> List[int]:
4645
"""
4746
>>> calculate_turn_around_times([1, 2, 3, 4], [0, 1, 3])
4847
[1, 3, 6]

scheduling/shortest_job_first.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
Please note arrival time and burst
44
Please use spaces to separate times entered.
55
"""
6-
from __future__ import annotations
6+
from typing import List
77

88
import pandas as pd
99

1010

1111
def calculate_waitingtime(
12-
arrival_time: list[int], burst_time: list[int], no_of_processes: int
13-
) -> list[int]:
12+
arrival_time: List[int], burst_time: List[int], no_of_processes: int
13+
) -> List[int]:
1414
"""
1515
Calculate the waiting time of each processes
16-
Return: list of waiting times.
16+
Return: List of waiting times.
1717
>>> calculate_waitingtime([1,2,3,4],[3,3,5,1],4)
1818
[0, 3, 5, 0]
1919
>>> calculate_waitingtime([1,2,3],[2,5,1],3)
@@ -72,8 +72,8 @@ def calculate_waitingtime(
7272

7373

7474
def calculate_turnaroundtime(
75-
burst_time: list[int], no_of_processes: int, waiting_time: list[int]
76-
) -> list[int]:
75+
burst_time: List[int], no_of_processes: int, waiting_time: List[int]
76+
) -> List[int]:
7777
"""
7878
Calculate the turn around time of each Processes
7979
Return: list of turn around times.
@@ -91,8 +91,8 @@ def calculate_turnaroundtime(
9191

9292

9393
def calculate_average_times(
94-
waiting_time: list[int], turn_around_time: list[int], no_of_processes: int
95-
):
94+
waiting_time: List[int], turn_around_time: List[int], no_of_processes: int
95+
) -> None:
9696
"""
9797
This function calculates the average of the waiting & turnaround times
9898
Prints: Average Waiting time & Average Turn Around Time

0 commit comments

Comments
 (0)