0
6.7kviews
Compare and contrast Quicksort and Radix sort on basis of their advantage and disadvantages.

Mumbai University > COMPS > Sem 3 > Data Structures

Marks: 5 M

Year: Dec 2014

For 5 marks 3 points would be sufficient?


1 Answer
0
332views
Quick Sort Radix sort
Quick sort compares the item values against each other Radix sort simply sorts by the binary representation of data. The items(as a whole) are never compared
The running time is O(n log n) The running time is O(kn) where k is the number of digits in the largest number which is very fast
It is massively recursive It has very less of recursion.
Please log in to add an answer.