Can we find the mode of an array in O(n) time without using Additional O(n) space, nor Hash. Moreover the data is not sorted?
|
|
Just count the frequencies. This is not Time is clearly linear O(n)
The main problem here, is that while k may be a constant, it may also be very very huge. However, k could also be small. Regardless, this does properly answer your question, even if it isn't practical. |
|||||||
|
|
The problem is not easier then Element distinctness problem1 - so basically without the additional space - the problem's complexity is So basically - if you cannot use extra space for the hash table, best is sort and iterate, which is (1) Given an algorithm A that runs in |
||||
|
|
|
Under the right circumstances, yes. Just for example, if your data is amenable to a radix sort, then you can sort with only constant extra space in linear time, followed by a linear scan through the sorted data to find the mode. If your data requires comparison-based sorting, then I'm pretty sure O(N log N) is about as well as you can do in the general case. |
|||
|
|