vote up 6 vote down star

I have this Array i wrote a function MostFreq that takes an array of integers and return 2 values : the more frequent number in the array and its frequency check this code i worte what do you think ? is there a better way to do it?

static void Main()
{ 
    int [] M={4,5,6,4,4,3,5,3};
    int x;
    int f=MyMath.MostFreq(M,out x );
    console.WriteLine("the most Frequent Item = {0} with frequency = {1}",x,f);
}

=====

in the class Mymath

public static int MostFreq(int[] _M, out int x)
{
    //First I need to sort the array in ascending order
    int Max_Freq, No_Freq, i, k;
    Array.Sort(_M);                         
    k = _M[0];
    Max_Freq = 0; i = 0; x = 0;
    while (i < _M.Length)
    {
        //No_Freq= the frequency of the current number
        No_Freq = 0;
        //X here is the number which is appear in the array Frequently 
        while (k == _M[i])
        {
            No_Freq++;
            i++;
            if (i == _M.Length) 
                break;
        }
        if (No_Freq > Max_Freq)
        {
            //so it will be printed the same
            Max_Freq = No_Freq;
            x = k;
        }
        if (i < _M.Length) k = _M[i];
    }
    return (Max_Freq);
}
flag
Why was this downvoted and marked offensive? – FlySwat Nov 10 '08 at 22:29
@Brandon Which version of C# are you using? – Nathan W Nov 10 '08 at 22:48
I just edited the tags so people know which version to aim at. – Nathan W Nov 10 '08 at 22:56
The most frequent number in a dataset is called the Mode. So perhaps that would be useful in naming your method. GetArrayMode() or something similar. – Simucal Nov 10 '08 at 22:59
@Nathan Thanx @Simucal yeah I agree with you – Eggs McLaren Nov 10 '08 at 23:02

5 Answers

vote up 5 vote down check

LINQ it up. I know this is in VB but you should be able to convert it to C#:

Dim i = From Numbers In ints _
            Group Numbers By Numbers Into Group _
            Aggregate feq In Group Into Count() _
            Select New With {.Number = Numbers, .Count = Count}

EDIT: Now in C# too:

var i = from numbers in M
                group numbers by numbers into grouped
                select new { Number = grouped.Key, Freq = grouped.Count()};
link|flag
I like you for doing that :) – Maxim Nov 10 '08 at 23:03
vote up 2 vote down

From a software engineering standpoint, I would expect a function called MostFreq to return the element with the highest frequency - not the frequency itself. I would switch your out and return values.

link|flag
vote up 2 vote down

Assuming you can't use LINQ, I'd probably approach the algorithm like this:

  • Create Key/Value dictionary
  • Iterate your array, add a key the dictionary for each unique elem, increment the value each time that element is repeated.
  • Walk the dictionary keys, and return the elem with the highest value.

This isn't a great solution but it is simple, ContainsKey is an O(1) lookup, so you'll be at most iterating your array twice.

link|flag
yep,thats cool I will try it thanx – Eggs McLaren Nov 10 '08 at 22:35
vote up 1 vote down

You could eliminate the sort you do at the start by iterating the entire array once, keeping a count of how many times you come across each value in a temporary array, and then iterating the temporary array for the highest number. You could keep both the highest frequency count and the most frequent item throughout, too.

Different sorts have different efficiencies on different types of data, of course, but this would be a worst case of just two iterations.

Edit: Apologies for the repeat... 'Tweren't there when I started :)

link|flag
vote up 0 vote down

Is there anyway to find the highest frequency number in an array with O(n) complexity and only two variables? I've seen this question on an exam and the answer (yes it is possible) confused me..

link|flag

Your Answer

Get an OpenID
or

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