Javatpoint Logo
Javatpoint Logo

Quick Sort Using Hoare's Partition

In this article, we will discuss how to implement Quick Sort using Hoare's Partition, its applications, and the advantages of Hoare's Partition scheme over the Lomuto partition scheme.

Quick Sort

The idea of this sorting algorithm is to select an element (pivot element) and find its correct position in the array, ensuring that elements left to it must be smaller and elements right to it must be greater. Repeating the same process for the left and right subarrays recursively until the array is sorted.

It is more efficient in terms of memory usage and time and is a widely used search algorithm. It employs the divide and conquer technique to sort an array.

Pseudo Code:

Hoare's Partition Scheme:

Sir Charles Antony Richard Hoare developed the Quick Sort algorithm, and both Lomuto and Hoare's partition schemes were proposed by him. Unlike the Lomuto partition, which uses a pivot element and partitions the array based on it, Hoare's partition uses two pointers that traverse the array in opposite directions and makes necessary swaps until the pointer meets.

This partition scheme reduces the number of swaps resulting in a time-efficient performance. Here is how it works:

Pseudo Code:

The elements left to the partition index will be smaller than or equal to the pivot. And elements right to the partition index will be greater or equal to the partition.

Time Complexity Analysis:

Average Case Analysis:

In the average case, we consider that the partition is not fairly dividing the array into two halves. We consider 1/10 elements in the first half and 9/10 in the second half.

Worst Case Analysis:

It performs worse when we pass an array sorted in ascending or descending order. In the worst case, the partition function selects the smallest or the largest element each time, resulting in poor performance.

Space Complexity Analysis:

The quick sort algorithm is an in-place sorting algorithm and does not require extra space to store elements. It requires auxiliary space for the recursion call stack.

In the worst case, the recursion call stack requires Θ(n) space.

Below is the snapshot of the recursion call stack:

Quick Sort Using Hoare's Partition

Python Implementation:

Output:

Quick Sort Using Hoare's Partition

Explanation:

We have a list: arr = [10, 2, 16, 22, 35, 17, 26, 3, 9, 13], n = 10.

Calling: quickSort(arr, 0, 9)

Here, low = 0 and high = 9, and the low is less than the high:

The quickSort() function calls the hoarePartition(arr, 0, 9). When it returns the partition index, quickSort() calls itself with the following parameters: quickSort(arr, low, i) and quickSort(arr, i+1, high).

Quick Sort Using Hoare's Partition

The whole idea resides in the partitioning scheme. So, it is important to understand Hoare's Partition Scheme. You can find the brief explanation of quick sort using Lomuto Partition here.

Lets us now understand the working of the hoarePartition() function.

It selects the first element of the subarray as a pivot to compare other elements. Here, pivot = arr[0] = 10, Initializes the left and right pointer as follows:

left = -1

right = 10

It then starts an infinite loop to traverse the array.

It initializes the left = 0 pointer and moves it towards the right until it finds an element greater than or equal to the pivot.

left = 0

arr[left] = 10 equal to the pivot = 10: It breaks the loop at left = 0 as the while condition is unsatisfied.

It then initializes the right = 9 and moves it toward the left until it finds an element less than or equal to the pivot.

right = 8

arr[right] = 9 less than the pivot = 10: It breaks the loop at right = 8 as the while condition is unsatisfied.

We then check if the left crosses the right or not. Here, the if-condition is unsatisfied.

We then swap the elements at left = 0 and right = 8.


Quick Sort Using Hoare's Partition

It starts the next iteration as the left pointer is less than the right pointer.

In the second iteration:

It swaps the element at left = 2 and right = 7: swap(arr[left] = 16, arr[right] = 3)

Quick Sort Using Hoare's Partition

In the third iteration:

The left pointer stops at index 3, arr[left] = 22, and the right pointer stops at 2, arr[right] = 3.

In this iteration, the left pointer becomes greater than the right, and hoarePartition() returns right = 2.

Quick Sort Using Hoare's Partition

Let us have a quick overview of a few more function calls.

Calling: quicksort(arr, 0, 2)

In this call, the hoarePartition() swaps (9, 3) and returns 1, and function calls are made accordingly.

Quick Sort Using Hoare's Partition

The above recursion tree shows how to proceed with the next function calls.

Calling: quicksort(arr, 3, 9)

Quick Sort Using Hoare's Partition

In this call, the hoarePartition() first swaps (22, 13), then swaps(35, 10), lastly swaps(26, 16) and returns 6.

This process is recursively repeated for all possible recursion calls, and ultimately the array gets sorted.

C++ Implementation:

Output:

Quick Sort Using Hoare's Partition

C Implementation:

Output:

Quick Sort Using Hoare's Partition

Advantages of Hoare's Partition over Lomuto Partition:

Hoare's Partition offers several advantages over Lomuto Partition, making it a preferred choice in certain scenarios:

  1. Fewer swaps: It reduces the number of swaps required during partitioning. Swapping elements is a computationally expensive operation, and reducing the number of swaps enhances the overall performance of the algorithm.
  2. Improved efficiency: Due to fewer swaps, it typically exhibits better performance than Lomuto Partition. It takes much faster than the Lomuto, making it a more efficient partitioning scheme.
  3. Better handling of duplicate elements: Lomuto Partition does not handle duplicate elements efficiently. In contrast, it handles duplicates more effectively, resulting in a more balanced partitioning and improved overall performance.

However, like Lomuto Partitioning, it also does not guarantee stability. The order of identical elements may change.

Conclusion:

Quick sort is an in-place sorting algorithm and follows the divide-and-conquer technique. It utilizes Hoare's Partition, which offers excellent and time-efficient partitioning. It improves the performance of the quick sort algorithm, resulting in faster sorting times compared to Lomuto Partition. Quick Sort is a popular choice for efficiently sorting large datasets. When stability is not that important, it is preferred over merge sort. It is cache friendly, as it operates on all the data, and all data can be stored in the cache.







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA