Detect the number of unique values in an array - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T06:31:50Zhttp://stackoverflow.com/feeds/question/988730http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/988730/detect-the-number-of-unique-values-in-an-array3Detect the number of unique values in an arrayGreener2009-06-12T19:55:01Z2009-07-01T11:44:50Z
<p>I am looking for an efficient way to detect the number of unique values in an array. </p>
<p>My current approach:</p>
<ol>
<li>Quicksort array of integers </li>
<li>Then run a loop to compare elements. </li>
</ol>
<p>In code:</p>
<pre><code> yearHolder := '';
for I := 0 to High(yearArray) do
begin
currYear := yearArray[i];
if (yearHolder <> currYear) then
begin
yearHolder := currYear;
Inc(uniqueYearNumber);
end;
end;
</code></pre>
http://stackoverflow.com/questions/988730/detect-the-number-of-unique-values-in-an-array/988746#988746-1Answer by eschneider for Detect the number of unique values in an arrayeschneider2009-06-12T19:58:13Z2009-06-12T19:58:13Z<p>I load the elements into a HashTable and check before adding each item.</p>
http://stackoverflow.com/questions/988730/detect-the-number-of-unique-values-in-an-array/988765#988765-1Answer by bnaffas for Detect the number of unique values in an arraybnaffas2009-06-12T20:02:14Z2009-06-12T20:02:14Z<p>A more efficient algorithm would be to dump everything a hash table (not sure if delphi even has this).</p>
<ol>
<li>Iterate through the list (in this case, yearArray) and use the values as keys in the hash table.</li>
<li>Retreive the number of keys in the hash table.</li>
</ol>
http://stackoverflow.com/questions/988730/detect-the-number-of-unique-values-in-an-array/988797#9887974Answer by Igor Krivokon for Detect the number of unique values in an arrayIgor Krivokon2009-06-12T20:09:05Z2009-06-13T04:07:36Z<p>In general, you can use this algorithm: </p>
<ol>
<li>Create a hash table that maps year to count of occurrences. </li>
<li>For each number in your array, put a corresponding entry in a hash table. </li>
<li>When done, get the number of entries in the hash.</li>
</ol>
<p>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.</p>
http://stackoverflow.com/questions/988730/detect-the-number-of-unique-values-in-an-array/988825#9888255Answer by Jeff Cuscutis for Detect the number of unique values in an arrayJeff Cuscutis2009-06-12T20:14:45Z2009-07-01T11:44:50Z<p>Here is an example with the THashedStringList:</p>
<pre><code>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;
</code></pre>
http://stackoverflow.com/questions/988730/detect-the-number-of-unique-values-in-an-array/989008#9890080Answer by Marco van de Voort for Detect the number of unique values in an arrayMarco van de Voort2009-06-12T20:57:17Z2009-06-13T04:10:08Z<p>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.</p>
<p>Up till D2009, there is only <strong>THashedStringList</strong> (which needs a bunch of costly number -> string conversions and hashes on strings to operate), but if you have D2009 then the <strong>Generics.Collections</strong> unit has some interesting data structures.</p>
http://stackoverflow.com/questions/988730/detect-the-number-of-unique-values-in-an-array/989952#989952-1Answer by Elliot for Detect the number of unique values in an arrayElliot2009-06-13T04:09:42Z2009-06-13T04:09:42Z<p>I'd recommend adding the items to a <em>Set</em> and, once completed, reading the size of the resulting <em>Set</em>. Because <em>Set</em>s do not allow duplicates, in Java, DDL, .Net, and many (if not all languages), this is a safe, cheap and reliable method.</p>
http://stackoverflow.com/questions/988730/detect-the-number-of-unique-values-in-an-array/998046#9980460Answer by alex for Detect the number of unique values in an arrayalex2009-06-15T19:53:06Z2009-06-15T19:53:06Z<p>In Delphi using DeHL we say:
List uniqueWidgets := List.Create( MassiveListOfNonUniqueWidgets.Distinct());</p>
<p>:P</p>