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

How do I find the mode (most frequent value in an array) using a simple for loop?

To DaveRandom: This is not a homework problem. School is currently not in session.

The code compiles with a wrong output.

Here is what I have:

public static void mode(double [] arr)
{
    double mode=arr[0];

    for(int i = 1; i<arr.length; i++)
    {   
        if(mode==arr[i])
        {
            mode++;
        }

     }


    return mode;
}
share|improve this question

2 Answers

First I sort the array by order and then I count occurrences of one number. No hashmaps only for loop and if statements.

My code:

static int Mode(int[] n){
    int t = 0;
    for(int i=0; i<n.length; i++){
        for(int j=1; j<n.length-i; j++){
            if(n[j-1] > n[j]){
                t = n[j-1];
                n[j-1] = n[j];
                n[j] = t;
            }
        }
    }

    int mode = n[0];
    int temp = 1;
    int temp2 = 1;
    for(int i=1;i<n.length;i++){
        if(n[i-1] == n[i]){
            temp++;
        }
        else {
            temp = 1;
        }
        if(temp >= temp2){
            mode = n[i];
            temp2 = temp;
        }
    }
    return mode;
}
share|improve this answer
1  
just change the int[] into double[] if you need double array – Deyan Nov 1 '12 at 23:31

-Just use a HashMap which contains the array index values as the keys and their occurrence numbers as the values.

-Update the HashMap as you traverse the for loop by checking to see if the current index already exists in the HashMap. IF IT DOES then find that double in the hash map and see how many times it has already occurred and put it back in the HashMap with one more occurrence.

-I did it in Java because that's what it looks like you are using. What's also good is that the time complexity is O(n) which is the best you could possibly get for this type of scenario because you have to visit every element at least once.

-So if you have an array like this of doubles: { 1,2,3,1,1,1,5,5,5,7,7,7,7,7,7,7,7,7} Then the hash map will look something like this at the end: { 1->4, 2->1, 3->1, 5->3, 7->9 } Meaning that "1 occurred 4 times, 2 occured 1 time .... 7 occurred 9 times" etc.

    public static double mode(double [] arr)
    {
        HashMap arrayVals = new HashMap();
        int maxOccurences = 1;
        double mode = arr[0];

        for(int i = 0; i<arr.length; i++)
        {   
            double currentIndexVal = arr[i];
            if(arrayVals.containsKey(currentIndexVal)){
                int currentOccurencesNum = (Integer) arrayVals.get(currentIndexVal);
                currentOccurencesNum++;
                arrayVals.put(currentIndexVal, currentOccurencesNum );
                if(currentOccurencesNum >= maxOccurences)
                {
                    mode = currentIndexVal;
                    maxOccurences = currentOccurencesNum;
                }
            }
            else{
                arrayVals.put(arr[i], 1);
            }
        }


        return mode;
    }
share|improve this answer
Thanks for the reply. I was able to figure it out using a for loop. – jlss4e Aug 22 '11 at 0:04
public static double mode(double [] arr) { double loc = 0, val = -1; for(int i = 1; i<arr.length; i++) { int count = 0; for(int j = 0;j<arr.length;j++) { if(arr[j]==arr[i]) { count++; } } if(count>loc) { val= arr[i]; loc = count; } } { } return val; – jlss4e Aug 22 '11 at 0:06
Yes jlss4e yours definitely works but it has to compare every element to every other element it seems because of the nested for loop. So it has to run n*(n-1) amount of times. So if there is 100 inputs it will have to like run 100*99 times. If you aren't worried about performance it seems perfect though =-) – Ray Aug 22 '11 at 0:18
1  
Yeah, I'm new to programming and I haven't learned about Hashmaps yet. – jlss4e Aug 22 '11 at 0:24
Yeah definitely learn HashMaps in your favorite language. I wish I had used them more when I first started. It's probably the simplest way of storing key-value information in one list without having to create an object. Like a list of names and phone numbers etc. – Ray Aug 22 '11 at 0:35
show 1 more comment

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.