Algorithm to sort a list L of n positive integer keys which need not to be distinct. Should have complexity of O(n+N) where N = maxL(i) - minL(i)?
I tried to something like merge sort, but that gives me O(nlogn). I am given O(N) extra space so it doesn't have to be O(n) complexity. However, i don't know if my mergesort-like algorithm is allowed to take a multiplicity of log n times. please help?