Merge sort enhanced in place sorting algorithm

R. Vignesh,Tribikram Pradhan,R Vignesh
DOI: https://doi.org/10.1109/icaccct.2016.7831730
2016-05-01
Abstract:This paper aims at introducing a new sorting al-gorithm which sorts the elements of an array In Place. This algorithm has O(n) best case Time Complexity and O(nlogn) average and worst case Time Complexity. We achieve our goal using Recursive Partitioning combined with In Place merging to sort a given array. A comparison is made between this particular idea and other popular implementations. We finally draw out a conclusion and observe the cases where this outperforms other sorting algorithms. We also look at its shortcomings and list the scope for future improvements that could be made.
What problem does this paper attempt to address?