Question: The radix sort algorithm sorts an array of n integers with d digits, using ten auxiliary arrays. First place each value v into the auxiliary
The radix sort algorithm sorts an array of n integers with d digits, using ten auxiliary arrays. First place each value v into the auxiliary array whose index corresponds to the last digit of v. Then move all values back into the original array, preserving their order. Repeat the process, now using the next-to-last (tens) digit, then the hundreds digit, and so on. What is the big-Oh time of this algorithm in terms of n and d? When is this algorithm preferable to merge sort?
Step by Step Solution
3.46 Rating (182 Votes )
There are 3 Steps involved in it
ANSWER The bigO time of this algorithm is Ond This algorithm is preferable to merge sort when the da... View full answer
Get step-by-step solutions from verified subject matter experts
