-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquick_sort.py
65 lines (55 loc) · 2.02 KB
/
quick_sort.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import random
from typing import List
class QuickSort:
"""
Implementation of quicksort algorithm.
"""
@staticmethod
def sorter(arr: List[int]) -> List[int]:
"""
Sorts an array in ascending order using the quicksort algorithm.
Args:
arr (List[int]): The array of elements to be sorted.
Returns:
List[int]: The sorted array.
"""
QuickSort._quicksort(arr, 0, len(arr) - 1)
return arr
@staticmethod
def _quicksort(arr: List[int], low: int, high: int) -> None:
"""
The main quicksort algorithm that recursively sorts elements before and after partition.
Args:
arr (List[int]): The array of elements to be sorted.
low (int): The starting index.
high (int): The ending index.
"""
if low < high:
pi = QuickSort._partition(arr, low, high)
QuickSort._quicksort(arr, low, pi - 1)
QuickSort._quicksort(arr, pi + 1, high)
@staticmethod
def _partition(arr: List[int], low: int, high: int) -> int:
"""
Helper function that selects a random pivot, places it in the correct position
in the sorted array, and places all smaller elements to the left of the pivot and all
greater elements to the right.
Args:
arr (List[int]): The array of elements to be sorted.
low (int): The starting index.
high (int): The ending index.
Returns:
int: The partitioning index.
"""
# Select a random pivot index between low and high
pivot_index = random.randint(low, high)
# Swap the pivot with the last element
arr[pivot_index], arr[high] = arr[high], arr[pivot_index]
pivot = arr[high]
i = low - 1
for j in range(low, high):
if arr[j] <= pivot:
i += 1
arr[i], arr[j] = arr[j], arr[i]
arr[i + 1], arr[high] = arr[high], arr[i + 1]
return i + 1