Open In App

Can Run Time Complexity of a comparison-based sorting algorithm be less than N logN?

Sorting algorithms are the means to sort a given set of data in an order according to the requirement of the user. They are primarily used to sort data in an increasing or decreasing manner. There are two types of sorting algorithms:

Comparison-based sorting algorithms: The elements of an array are compared to each other to sort the array. This type of algorithm checks if one element is greater than or equal to another element in the array. It does not do manipulation on a single array element.



Examples of comparison-based algorithms: Merge sort (compare the elements and copy them), Quicksort (compare the elements and swap them), and Heap sort (Heapify the elements using comparison).

Theorem: Every comparison-based sorting algorithm has the worst-case running time of 



Proof:

Let us assume a comparison-based sorting algorithm, and an array of length N. Consider the input array contains array elements like  in some jumbled order. We can order these N elements in N! different ways. 

For more details, please refer: Design and Analysis of Algorithms.

Article Tags :