If you do not have any constraints regarding memory is there any algorithm to sort a given array with duplicates in O(n) ?
|
|
It depends. If you can bound your input in some way with both a lower and upper bound (and maximum precision/value length), then you can use a Radix Sort which is In general, however, if you cannot bound your input and need to use a comparison based sort, it can be proven that When sorting fixed precision integers or floating point numbers (normally up to 64-bits), the values are effectively bounded, and radix sort is possible. Even if the maximum bit-length of the values is bounded, the longer the bit-length, the larger the constant. In effect, if there are n-values to sort, and each value can have a length or precision up to m bits, the algorithmic complexity is O(nm). |
|||||
|
|
Yes. If you do not have any limitations regarding space complexity then you can sort the array with o(n) time complexity.
Now, Fill the temp_number[ ][ ] such that every element of array N is put in the index of temp_number[ ][ ] and make flag=1 otherwise keep flag=0.
|
||||
|
|