Chapter 2.2
Quick Sort
History of Quick Sort
Quick Sort is a highly efficient sorting algorithm that was developed by British computer scientist Tony Hoare in 1959 while studying at Moscow State University. Hoare was working on an automatic translation project when he invented Quick Sort to optimize sorting operations in the programming language Mercury Autocode. Quick Sort has become one of the most widely used sorting algorithms due to its average-case efficiency of O(nlogn)
and its ability to be implemented in-place.
Quick Sort Algorithm
Quick Sort is a comparison-based sorting algorithm that uses the divide-and-conquer approach to sort a list of elements. It operates by selecting a pivot element and partitioning the array into two sub-arrays—those smaller than the pivot and those larger. The process is repeated recursively on the sub-arrays until the entire list is sorted.
Pseudocode for Quick Sort
Explanation of the Pseudocode:
quickSort(arr, low, high): This function takes an array and two indices (low and high). If the sublist defined by the two indices has more than one element, it calls the partition function to get the pivot index and recursively sorts the sublists to the left and right of the pivot.
partition(arr, low, high): This function selects a pivot (typically the first element in the list) and rearranges the elements such that all elements smaller than the pivot are on its left, and all greater elements are on its right. It then places the pivot in its correct position in the sorted array and returns its index.
Python Code for Quick Sort
Here’s the implementation of the Quick Sort algorithm in Python:
Advantages of OOP-Based QuickSort
Encapsulation: The array and the sorting logic are encapsulated within the class
QuickSort
, making the design more modular and reusable.Modularity: The partitioning logic and the quicksort logic are separated into different methods, improving readability and maintainability.
Reusability: You can easily reuse the
QuickSort
class to sort multiple arrays by creating new instances.
How Quick Sort Works
Choosing the Pivot: In this implementation, the pivot is chosen as the first element in the list (
arr[low]
).Partitioning: The
partition()
function rearranges the array such that elements smaller than the pivot move to its left, and elements greater than the pivot move to its right.Recursive Sorting: Once the pivot is correctly positioned, Quick Sort is called recursively on the two sub-arrays (left and right of the pivot).
Class
QuickSort
: The classQuickSort
is responsible for holding the array and methods needed for partitioning and sorting the array.__init__(self, arr)
:The constructor method initializes the object with the arrayarr
that needs to be sorted.partition(self, lower, upper)
: This method performs the partitioning of the array. It uses the same logic as before, but now works on the instance variableself.arr
. It separates the elements smaller than or equal to the pivot on the left and elements larger than the pivot on the right. The function returns thelower
index, which is the position of the pivot after partitioning.quicksort(self, lower, upper) or quicksort(self, l, r)
: This method recursively sorts the array using the partitioning method. It checks the base condition (lower < upper
) and proceeds to sort the left and right parts of the pivot. This method is the main sorting function. It recursively calls itself on the subarrays to the left and right of the pivot. The base case (r - l <= 1
) ensures that the recursion terminates when the subarray has one or zero elements.Example Usage: An array is passed to the
QuickSort
class. AQuickSort
object is created with an array to be sorted. Thequicksort
method is called with the indices of the entire array (0 tolen(arr) - 1
). The sorted array is printed at the end.
Efficiency of Quick Sort
Comparison to Other Sorting Algorithms
Example of Time Complexity: Linear Search vs Binary Search
In the context of searching for a SIM card in a database of millions of records, using Binary Search can significantly improve the performance compared to Linear Search.
Linear Search:
Each element is checked one by one.
Code:
Binary Search (works only on sorted arrays):
The search space is halved at each step.
Code:
Conclusion
Last updated