If we have some m>0 and need to provide an algorithm to sort n integers in the range 0 to n^m-1 in time O(mn). My suggestion is :
Radix-Sort(A,t) // t is the digit length
for i=0 to t
do Insertion-Sort A on digit i
My argument is that the above will run in O(mn) because for each digit t - Insertion sort will take O(n) time since the range for each run is small.
Is this the correct suggestion? What should be the space requirement of the above?
Thanks.