Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for an elegant way of determining which element has the highest occurrence (mode) in a JavaScript array.

For example, in

['pear', 'apple', 'orange', 'apple']

the 'apple' element is the most frequent one.

share|improve this question
You could adapt some ideas from this Stackoverflow question. stackoverflow.com/questions/840781/… – Nosredna Jun 27 '09 at 23:23
I've not read the solutions too closely, but do any of them incorporate the following nuance (optimization?), based on the requirement merely to determine which element has the most occurrences, rather than how many occurrences is the most .... and that nuance is, as the array is looped over, counting can stop when the difference between the highest and second-highest occurences, is less than the number of elements left to loop over, looping can cease, the current highest will be the highest – George Jempty Aug 9 '10 at 0:54
Also these solutions don't seem to account for ties. – George Jempty Aug 9 '10 at 1:08

5 Answers

up vote 7 down vote accepted

This is just the mode. Here's a quick, non-optimized solution. It should be O(n).

function mode(array)
{
    if(array.length == 0)
    	return null;
    var modeMap = {};
    var maxEl = array[0], maxCount = 1;
    for(var i = 0; i < array.length; i++)
    {
    	var el = array[i];
    	if(modeMap[el] == null)
    		modeMap[el] = 1;
    	else
    		modeMap[el]++;	
    	if(modeMap[el] > maxCount)
    	{
    		maxEl = el;
    		maxCount = modeMap[el];
    	}
    }
    return maxEl;
}
share|improve this answer
1  
Nice... but it only works for strings - not necessarily a limitation but something to consider. – James Jun 28 '09 at 0:00
1  
oops, (and numbers) – James Jun 28 '09 at 0:02
Many thanks, I wasn't expecting a complete solution. Works on both strings and numbers with only a single pass which is quite nice. – vise Jun 28 '09 at 1:34
I've added a version of this algorithm to handle ties. – samandmoore Aug 10 '10 at 18:10

As per George Jempty's request to have the algorithm account for ties, I propose a modified version of Matthew Flaschen's algorithm.

function modeString(array)
{
    if (array.length == 0)
        return null;

    var modeMap = {},
        maxEl = array[0],
        maxCount = 1;

    for(var i = 0; i < array.length; i++)
    {
        var el = array[i];

        if (modeMap[el] == null)
            modeMap[el] = 1;
        else
            modeMap[el]++;

        if (modeMap[el] > maxCount)
        {
            maxEl = el;
            maxCount = modeMap[el];
        }
        else if (modeMap[el] == maxCount)
        {
            maxEl += '&' + el;
            maxCount = modeMap[el];
        }
    }
    return maxEl;
}

This will now return a string with the mode element(s) delimited by a '&' symbol. When the result is received it can be split on that '&' element and you have your mode(s).

Another option would be to return an array of mode element(s) like so:

function modeArray(array)
{
    if (array.length == 0)
        return null;
    var modeMap = {},
        maxCount = 1, 
        modes = [array[0]];

    for(var i = 0; i < array.length; i++)
    {
        var el = array[i];

        if (modeMap[el] == null)
            modeMap[el] = 1;
        else
            modeMap[el]++;

        if (modeMap[el] > maxCount)
        {
            modes = [el];
            maxCount = modeMap[el];
        }
        else if (modeMap[el] == maxCount)
        {
            modes.push(el);
            maxCount = modeMap[el];
        }
    }
    return modes;
}

In the above example you would then be able to handle the result of the function as an array of modes.

share|improve this answer
a=['pear', 'apple', 'orange', 'apple'];
b=[];
max='', maxi=0;
for(var k in a) {
  if(b[k]) b[k]++ else b[k]=1;
  if(maxi<b[k]) { max=k; maxi=b[k] }
}
share|improve this answer
This is still O(n), but it unnecessarily uses two passes. – Matthew Flaschen Jun 28 '09 at 0:38
Since JavaScript is transmitted, it's always interesting to see small solutions. – Nosredna Jun 28 '09 at 0:49
Lol 2 minus for proper solution ;] I corrected unnecessarily two passes, was making it quick, but still it works and is still the shortest solution. – Thinker Jun 28 '09 at 8:44
each access to b takes at least log(len(b)) so O(n) might be a bit optimistic – Nicolas78 Aug 14 '10 at 12:51
nicolas78: If the array is small, it doesn't matter. So it depends on your project. – Thinker Aug 14 '10 at 18:19

I guess you have two approaches. Both of which have advantages.

Sort then Count or Loop through and use a hash table to do the counting for you.

The hashtable is nice because once you are done processing you also have all the distinct elements. If you had millions of items though, the hash table could end up using a lot of memory if the duplication rate is low. The sort, then count approach would have a much more controllable memory footprint.

share|improve this answer
var mode = 0;
var c = 0;
var num = new Array();
var value = 0;
var greatest = 0;
var ct = 0;

Note: ct is the length of the array.

function getMode()
{
    for (var i = 0; i < ct; i++)
    {
        value = num[i];
        if (i != ct)
        {
            while (value == num[i + 1])
            {
                c = c + 1;
                i = i + 1;
            }
        }
        if (c > greatest)
        {
            greatest = c;
            mode = value;
        }
        c = 0;
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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