By RafaelZin
via code2learn.com
Submitted: Feb 18 2013 / 09:10
QuickSort as we all know has a similar approach to Merge Sort i.e. it uses Divide-and-Conquer recursive algorithm to sort the values. The difference being is it's an in-place sorting algorithm. Basically an in-place algorithm is one which transforms the input using a data structure with a small, constant amount of extra storage space.
Add your comment