1. Overview

An efficient sorting algorithm plays an important role in reducing the complexity of a problem. Sorting algorithms are used in various problems in computer science to rearrange the elements in an input array or list in ascending or descending order.

Quicksort is a highly efficient sorting that is based on the Divide-and-Conquer method.

In this tutorial, we’ll discuss the worst-case scenario for the Quicksort algorithm in detail.

2. When Does the Worst Case of Quicksort Occur?

The efficiency of the Quicksort algorithm very much depends on the selection of the pivot element. Let’s assume the input of the Quicksort is a sorted array and we choose the leftmost element as a pivot element. In this case, we’ll have two extremely unbalanced arrays. One array will have one element and the other one will have (N - 1) elements.

Similarly, when the given input array is sorted reversely and we choose the rightmost element as the pivot element, the worst case occurs. Again, in this case, the pivot elements will split the input array into two unbalanced arrays.

Except for the above two cases, there is a special case when all the elements in the given input array are the same. In such a scenario, the pivot element can’t divide the input array into two and the time complexity of Quicksort increases significantly.

3. Worst Case Time Complexity Analysis

Let’s assume that we choose a pivot element in such a way that it gives the most unbalanced partitions possible:

Capture

All the numbers in the box denote the size of the arrays or the subarrays.

Let’s consider an input array of size N. The first partition call takes N times to perform the partition step on the input array.

Each partition step is invoked recursively from the previous one. Given that, we can take the complexity of each partition call and sum them up to get our total complexity of the Quicksort algorithm.

Therefore, the time complexity of the Quicksort algorithm in worst case is \mathbf{[N + (N - 1) + (N - 2) + (N -3) + ..... + 2] = [\frac{N(N + 1)}{2} - 1] =\mathcal{O}(N^2)}

Alternatively, we can create a recurrence relation for computing it.

In the worst case, after the first partition, one array will have 1 element and the other one will have (N-1) elements. Let’s say T(N) denotes the time complexity to sort N elements in the worst case:

T(N) = Time \;needed \;to \;partition \;N \;elements \;+ \;Time \;needed \;to \;sort \;(N - 1) \;elements \;recursively = N + T(N - 1)

Again for the base case when N = \mathsf{0} and 1, we don’t need to sort anything. Hence, the sorting time is \mathsf{0} and T(0)= T(1) = 0

Now, we’re ready to solve the recurrence relation we derived earlier:

T(N) = N + T(N- 1), T(N - 1) = (N - 1) + T(N- 2), T(N - 2) = (N - 2) + T(N- 3), T(N - 3) = (N - 3) + T(N- 4), .......... , T(3) = 3 + T(2), T(2) = 2 + T(1), T(1) = 0

As a result, \mathbf{T(N) = N + (N-1) + (N-2) ... + 3 + 2 =  [\frac{N(N + 1)}{2} - 1] =\mathcal{O}(N^2)}}

4. Avoiding the Worst Case

We can avoid the worst-case in Quicksort by choosing an appropriate pivot element. In this section, we’ll discuss different ways to choose a pivot element.

The first approach for the selection of a pivot element would be to pick it from the middle of the array. In this way, we can divide the input array into two subarrays of an almost equal number of elements in it.

In some cases selection of random pivot elements is a good choice. This variant of Quicksort is known as the randomized Quicksort algorithm.

Another approach to select a pivot element is to take the median of three pivot candidates. In this case, we’ll first select the leftmost, middle, and rightmost element from the input array. Then we’ll arrange them to the left partition, pivot element, and right partition.

5. Advantages and Disadvantages

Quicksort is considered one of the best sorting algorithms in terms of efficiency. The average case time complexity of Quicksort is \mathcal{O}(NlogN) which is the same as Merge Sort. Even with a large input array, it performs very well. It provides high performance and is comparatively easy to code. It doesn’t require any additional memory.

The main disadvantage of quicksort is that a bad choice of pivot element can decrease the time complexity of the algorithm down to \mathcal{O}(N^2). Also, it’s not a stable sorting algorithm.

6. Implementation

To see Quicksort in practice please refer to our Quicksort in Java article.

7. Conclusion

In this tutorial, we discussed the different worst-case scenarios of Quicksort and presented the time complexity analysis for it.

6 Comments
Oldest
Newest
Inline Feedbacks
View all comments
Comments are open for 30 days after publishing a post. For any issues past this date, use the Contact form on the site.