Detect the number of unique values in an array - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T06:31:50Z http://stackoverflow.com/feeds/question/988730 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/988730/detect-the-number-of-unique-values-in-an-array 3 Detect the number of unique values in an array Greener 2009-06-12T19:55:01Z 2009-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 &lt;&gt; 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 -1 Answer by eschneider for Detect the number of unique values in an array eschneider 2009-06-12T19:58:13Z 2009-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 -1 Answer by bnaffas for Detect the number of unique values in an array bnaffas 2009-06-12T20:02:14Z 2009-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#988797 4 Answer by Igor Krivokon for Detect the number of unique values in an array Igor Krivokon 2009-06-12T20:09:05Z 2009-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#988825 5 Answer by Jeff Cuscutis for Detect the number of unique values in an array Jeff Cuscutis 2009-06-12T20:14:45Z 2009-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#989008 0 Answer by Marco van de Voort for Detect the number of unique values in an array Marco van de Voort 2009-06-12T20:57:17Z 2009-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 -1 Answer by Elliot for Detect the number of unique values in an array Elliot 2009-06-13T04:09:42Z 2009-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#998046 0 Answer by alex for Detect the number of unique values in an array alex 2009-06-15T19:53:06Z 2009-06-15T19:53:06Z <p>In Delphi using DeHL we say: List uniqueWidgets := List.Create( MassiveListOfNonUniqueWidgets.Distinct());</p> <p>:P</p>