vote up 7 vote down star

Suppose we have a vector/array in C++ and we wish to count which of these N elements has maximum repetitive occurrences and output the highest count. Which algorithm is best suited for this job.

example:

int a = { 2, 456, 34, 3456, 2, 435, 2, 456, 2}

the output is 4 because 2 occurs 4 times. That is the maximum number of times 2 occurs.

flag

How about you show us yours first?!? – Mitch Wheat Sep 28 '08 at 9:45
I am using STL map to fill the frequencies and sorting it using sort(map.begin(),map.end()) any more speed gains ? – Abhishek Mishra Sep 28 '08 at 14:17
If the question is "which number", the answer should be 2 not 4 ;-). – Gamecat Sep 28 '08 at 15:41
This smells like a homework problem. – jfm3 Sep 28 '08 at 16:38
speed isn't a homework problem ! its more about competition if you think carefully – Abhishek Mishra Sep 28 '08 at 16:50
show 4 more comments

10 Answers

vote up 17 vote down check

Sort the array and then do a quick pass to count each number. The algorithm has O(N*logN) complexity.

Alternatively, create a hash table, using the number as the key. Store in the hashtable a counter for each element you've keyed. You'll be able to count all elements in one pass; however, the complexity of the algorithm now depends on the complexity of your hasing function.

link|flag
Shouldn't it be O(N+N*logN)? – Torsten Marek Sep 28 '08 at 9:48
yeah thats what i was thinking – Midhat Sep 28 '08 at 9:56
Err, yeah. It's 3am here, and I have a three week old baby, if that counts as an excuse. :-) – Franci Penov Sep 28 '08 at 10:03
2  
O(N+N*logN) = O(N*logN) – Alexander Kojevnikov Sep 28 '08 at 10:03
There's no need for an excuse - after all, SO is a collaborative effort :) – Torsten Marek Sep 28 '08 at 10:04
show 12 more comments
vote up 0 vote down

It wil be in O(n)............ but the thing is the large no. of array can take another array with same size............

for(i=0;i

mar=count[o]; index=o;

for(i=0;i

then the output will be......... the element index is occured for max no. of times in this array........

here a[] is the data array where we need to search the max occurance of certain no. in an array.......

count[] having the count of each element.......... Note : we alrdy knw the range of datas will be in array.. say for eg. the datas in that array ranges from 1 to 100....... then have the count array of 100 elements to keep track, if its occured increament the indexed value by one........

link|flag
vote up 0 vote down

Here's my complete, tested, version, using a std::tr1::unordered_map.

I make this approximately O(n). Firstly it iterates through the n input values to insert/update the counts in the unordered_map, then it does a partial_sort_copy which is O(n). 2*O(n) ~= O(n).

#include <unordered_map>
#include <vector>
#include <algorithm>
#include <iostream>

namespace {
// Only used in most_frequent but can't be a local class because of the member template
struct second_greater {
    // Need to compare two (slightly) different types of pairs
    template <typename PairA, typename PairB>
    bool operator() (const PairA& a, const PairB& b) const
        { return a.second > b.second; }
};
}

template <typename Iter>
std::pair<typename std::iterator_traits<Iter>::value_type, unsigned int>
most_frequent(Iter begin, Iter end)
{
    typedef typename std::iterator_traits<Iter>::value_type value_type;
    typedef std::pair<value_type, unsigned int> result_type;

    std::tr1::unordered_map<value_type, unsigned int> counts;

    for(; begin != end; ++begin)
        // This is safe because new entries in the map are defined to be initialized to 0 for
        // built-in numeric types - no need to initialize them first
        ++ counts[*begin];

    // Only need the top one at this point (could easily expand to top-n)
    std::vector<result_type> top(1);

    std::partial_sort_copy(counts.begin(), counts.end(),
                           top.begin(), top.end(), second_greater());

    return top.front();
}

int main(int argc, char* argv[])
{
    int a[] = { 2, 456, 34, 3456, 2, 435, 2, 456, 2 };

    std::pair<int, unsigned int> m = most_frequent(a, a + (sizeof(a) / sizeof(a[0])));

    std::cout << "most common = " << m.first << " (" << m.second << " instances)" << std::endl;
    assert(m.first == 2);
    assert(m.second == 4);

    return 0;
}
link|flag
vote up 0 vote down

Please change the title from "How to count which number occurs most in a set of numbers ?". A 'set' cannot contain duplicates. Use 'list' or 'array' like in the text of your question instead.

link|flag
vote up 1 vote down

The hash algorithm (build count[i] = #occurrences(i) in basically linear time) is very practical, but is theoretically not strictly O(n) because there could be hash collisions during the process.

An interesting special case of this question is the majority algorithm, where you want to find an element which is present in at least n/2 of the array entries, if any such element exists.

Here is a quick explanation, and a more detailed explanation of how to do this in linear time, without any sort of hash trickiness.

link|flag
vote up 0 vote down

If the range of elements is large compared with the number of elements, I would, as others have said, just sort and scan. This is time n*log n and no additional space (maybe log n additional).

THe problem with the counting sort is that, if the range of values is large, it can take more time to initialize the count array than to sort.

link|flag
vote up 1 vote down

A possible C++ implementation that makes use of STL could be:

#include <iostream>
#include <algorithm>
#include <map>

// functor
struct maxoccur
{
    int _M_val;
    int _M_rep;

    maxoccur()
    : _M_val(0),
      _M_rep(0)
    {}

    void operator()(const std::pair<int,int> &e)
    {
        std::cout << "pair: " << e.first << " " << e.second << std::endl;
        if ( _M_rep < e.second ) {
            _M_val = e.first;
            _M_rep = e.second;
        }
    }
};

int
main(int argc, char *argv[])
{
    int a[] = {2,456,34,3456,2,435,2,456,2};
    std::map<int,int> m; 

    // load the map
    for(unsigned int i=0; i< sizeof(a)/sizeof(a[0]); i++) 
        m [a[i]]++;

    // find the max occurence...
    maxoccur ret = std::for_each(m.begin(), m.end(), maxoccur());
    std::cout << "value:" << ret._M_val << " max repetition:" << ret._M_rep <<  std::endl;

    return 0;
}
link|flag
vote up 2 vote down

If you have the RAM and your values are not too large, use counting sort.

link|flag
vote up 9 vote down

Optimized for space:

Quicksort (for example) then iterate over the items, keeping track of largest count only. At best O(N log N).

Optimized for speed:

Iterate over all elements, keeping track of the separate counts. This algorithm will always be O(n).

link|flag
If you sort, you only have to keep the length of the longest sequence of one number. If you don't sort, you have to keep the counts of all numbers in an associative container. – Torsten Marek Sep 28 '08 at 10:19
If you keep track of the count of each element, worst case will require N counters. You've pretty much doubled the memory you need. Granted for a 4GB memory machine that's not going to be that big of a problem. However, for a 64K mem shared with the OS one you might want to sort. – Franci Penov Sep 28 '08 at 10:35
@Franci Penov: the whole point is - the question says "best", and the answer depends on the sense of "best" – Sklivvz Sep 28 '08 at 10:51
Yep, I agree. That's why I offered two alternative solutions - sorting or a hashtable of counters. :-) Just wanted to point the memory consumption drawback of the second algorithm. Memory is also important, not only speed. – Franci Penov Sep 28 '08 at 11:03
Isn't the bigger problem with the "optimizied for speed" version that you need an array of size equal to the largest possible number to keep O(n)? Otherwise you need a tree for O(n*log n) or hash for O(who knows)? – Mark Santesson Sep 28 '08 at 13:38
vote up 1 vote down

a bit of pseudo-code:

//split string into array firts
strsplit(numbers) //PHP function name to split a string into it's components
i=0
while( i < count(array))
 {
   if(isset(list[array[i]]))
    {
      list[array[i]]['count'] = list + 1
    }
   else
    {
      list[i]['count'] = 1
      list[i]['number']
    }
   i=i+1
 }
usort(list) //usort is a php function that sorts an array by its value not its key, Im assuming that you have something in c++ that does this
print list[0]['number'] //Should contain the most used number
link|flag
ya, fixed... I spend to much time in a linux shell.... – Unkwntech Sep 28 '08 at 10:01
:) I wonder what "sudo code" would do, if it existed... – Torsten Marek Sep 28 '08 at 10:06
it does exist and does something like this "rm -rf /". – Unkwntech Sep 28 '08 at 20:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.