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?
|
1
|
|||||||
|
|
|
O(n) running time max_value memory usage
|
||
|
|
|
|
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.
Regards |
|||
|
|
|
|
This is a far more efficient non LINQ implementation.
|
||||||||||
|
|
|
If you have .NET 3.5 you can easily achieve this with LINQ via:
Non LINQ:
|
||||||||||
|