vote up 3 vote down star
1

I am looking for an efficient way to detect the number of unique values in an array.

My current approach:

  1. Quicksort array of integers
  2. Then run a loop to compare elements.

In code:

  yearHolder := '';
  for I := 0 to  High(yearArray) do
  begin
    currYear := yearArray[i];
    if (yearHolder <> currYear) then
    begin
      yearHolder := currYear;
      Inc(uniqueYearNumber);
    end;
  end;
flag

What version of Delphi? 2009 has a number of generic data structures that would make this a lot simpler. – Jim McKeeth Jun 13 at 4:08
Hi Jim, I use D2009 but to be honest I have a hard time to find any good examples of generics in Delphi; and cannot transpose Java into Delphi the way I would like. Any examples you can share ? – Greener Jun 13 at 22:28

7 Answers

vote up 5 vote down check

Here is an example with the THashedStringList:

hl := THashedStringList.Create; // in Inifiles
try
  hl.Sorted := True;
  hl.Duplicates := dupIgnore; // ignores attempts to add duplicates
  for i := 0 to  High(yearArray) do
    hl.Add(yearArray[i]);
  uniqueYearCount := hl.Count;
finally
  hl.Free;
end;
link|flag
Thanks for the code example, it helped. I did not use before HashStrings. – Greener Jun 13 at 1:21
Does the dupIgnore statement work without declaring h1 to be sorted? (See: stackoverflow.com/questions/1064446/… ) – lkessler Jun 30 at 20:12
My bad, I forgot the dupIgnore doesn't work without Sorted := True; – Jeff Cuscutis Jul 1 at 11:45
vote up 4 vote down

In general, you can use this algorithm:

  1. Create a hash table that maps year to count of occurrences.
  2. For each number in your array, put a corresponding entry in a hash table.
  3. When done, get the number of entries in the hash.

However, in your case, your variables are named "year". If this is really a year, this is simpler, because years have a very limited range. Say, the range 0-3000 should be enough. So, instead of a hash table, you can use a simple array of counters. Initialize it with 0s. Then when you see the year 2009, increment the element arr[2009]. At the end, count the number of elements with arr[i] >= 1.

link|flag
Count > 1, that should work better. – gabr Jun 12 at 21:05
Depends on what is meant by unique. Count == 1 will count only the non-duplicated items. count >= 1 will cound all the items. – Igor Krivokon Jun 12 at 21:29
...but his solution is more consistent with >= 1, so you are right; I'm updating my answer. Thanks! – Igor Krivokon Jun 12 at 21:31
Thanks for the good description. With the example below. It helped. Delphi is limited with the data structures. – Greener Jun 13 at 1:23
vote up 0 vote down

A minor deviation from the plan could be more worthwhile: never add duplicates to the array in the first place, or add them directly to the proposed hash array.

Up till D2009, there is only THashedStringList (which needs a bunch of costly number -> string conversions and hashes on strings to operate), but if you have D2009 then the Generics.Collections unit has some interesting data structures.

link|flag
1  
No need for number-to-string conversions. Delphi has TBucketList, in the Contnrs unit, with "specializations" for a few data types, including Integer. (It's not called a hash table, but that doesn't mean that's not what it is.) – Rob Kennedy Jun 15 at 7:50
vote up 0 vote down

In Delphi using DeHL we say: List uniqueWidgets := List.Create( MassiveListOfNonUniqueWidgets.Distinct());

:P

link|flag
vote up -1 vote down

I load the elements into a HashTable and check before adding each item.

link|flag
vote up -1 vote down

A more efficient algorithm would be to dump everything a hash table (not sure if delphi even has this).

  1. Iterate through the list (in this case, yearArray) and use the values as keys in the hash table.
  2. Retreive the number of keys in the hash table.
link|flag
That's what I said... – eschneider Jun 12 at 20:38
It is...we must have started writing our posts at the same time. The fact that we agree should say something :-) – bnaffas Jun 12 at 21:17
vote up -1 vote down

I'd recommend adding the items to a Set and, once completed, reading the size of the resulting Set. Because Sets do not allow duplicates, in Java, DDL, .Net, and many (if not all languages), this is a safe, cheap and reliable method.

link|flag

Your Answer

Get an OpenID
or

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