Find maximum occuring integer (Mode) in an unsorted array
- by Rajendra
How to find the integer occurring maximum number of times (mode) in an unsorted array of integers?
One O(nlogn) approach I could think of is to sort. Is there any other better approach?