vote up 3 vote down star
1

I am having trouble counting the unique values in an array, and I need to do so without rearranging the array elements.

How can I accomplish this?

flag

17% accept rate
is this homework? – gbrandt Mar 5 at 5:36
he he kinda ;P.... – jarus Mar 5 at 5:40
Nothing wrong with homework... Provided one doesn't just take the answers as they are. (ie, take the answer, and make it better). – Arafangion Mar 5 at 6:08

4 Answers

vote up 1 vote down

O(n) running time max_value memory usage

boolean[] data = new boolean[maxValue];
for (int n : list) {
   if (data[n]) counter++
   else data[n] = true;
}
link|flag
vote up 0 vote down

Should only the distinct values be counted or should each number in the array be counted (e.g. "number 5 is contained 3 times")?

The second requirement can be fulfilled with the starting steps of the counting sort algorithm.
It would be something like this:

  • build a set where the index/key is the element to be counted
  • a key is connected to a variable which holds the number of occurences of the key element
  • iterate the array
    • increment value of key(array[index])

Regards

link|flag
vote up 6 vote down

This is a far more efficient non LINQ implementation.

        var array = new int[] { 1, 2, 3, 3, 3, 4 };
        // .Net 3.0 - use Dictionary<int, bool> 
        // .Net 1.1 - use Hashtable 
        var set = new HashSet<int>();
        foreach (var item in array) {
            if (!set.Contains(item)) set.Add(item);
        }
        Console.WriteLine("There are {0} distinct values. ", set.Count);
link|flag
Why <int, object> instead of <int, bool>? – sharptooth Mar 5 at 8:51
Performance wise they should both be identical, will clean it up to use HashSet so this demo code looks less ugly – Sam Saffron Mar 5 at 22:07
The dictionary contains should be far faster on large arrays than the List contains. – Kevin Gale Mar 5 at 22:24
Its not a List, its a HashSet .... – Sam Saffron Mar 5 at 22:27
You don't need to test whether the HashSet contains a value. If it contains, Add() does nothing. Maybe the compiler knows to optimize but you will get a slight performance improvement otherwise. – Chetan Sastry Mar 5 at 23:04
show 4 more comments
vote up 11 vote down

If you have .NET 3.5 you can easily achieve this with LINQ via:

int numberOfElements = myArray.Distinct().Count();

Non LINQ:

List<int> uniqueValues = new List<int>();
for(int i = 0; i < myArray.Length; ++i)
{
    if(!uniqueValues.Contains(myArray[i]))
        uniqueValues.Add(myArray[i]);
}
int numberOfElements = uniqueValues.Count;
link|flag
If this is a homework question, then the answer isn't likel to get him many points but still a good answer in terms of linq. – Andrew Robinson Mar 5 at 5:35
@Andrew Added a non LINQ homeworkish example. – Quintin Robinson Mar 5 at 5:38
The non-linq example is really bad, but let's let Rich B come up with a better solution if it is indeed a homework question. :) (HINT: How would you avoid having to iterate over the entire array for each item?) – Arafangion Mar 5 at 5:40
Let Jarus come up with a better solution, rather. (Why doesn't SO allow one to edit comments!?) – Arafangion Mar 5 at 5:41
You can delete comments and re-write. That's what I do. – Devin Jeanpierre Mar 5 at 5:42
show 4 more comments

Your Answer

Get an OpenID
or

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