Is there a straight-forward combination of standard higher-order funtions to count the unique elements in a list?
For example the result for
[1, 1, 4, 0, 4, 4]
would be something like
[(1,2), (4,3), (0,1)]
|
|
If order is not important this works:
If you want to order the result by first occurrence, you can use |
|||||||||||
|
|
Using Data.Map and tuple sections:
(Add |
|||
|
|
|
If the list contains only integers, you could also use
(Remember to compile with optimization though, otherwise this will be 2x slower than the You could also use one of the multiset packages which makes the function as simple as
but being less efficient. All of the above solutions ignore the original order. |
|||
|
|
The simplest thing would be to sort the items into order, use "group" to put them into sub-lists of equal elements, and then count the items in each sub-list.
|
|||||
|
|
What your talking about is just run length encoding on sorted data: the free online book Real World Haskell has a great example of this. You will want to sort the list before you put it through the runLengthEncoder. |
|||||
|