Counting common Bytes, Words and Double Words.
Posted
by Recursion
on Stack Overflow
See other posts from Stack Overflow
or by Recursion
Published on 2010-05-23T22:33:56Z
Indexed on
2010/05/23
22:40 UTC
Read the original article
Hit count: 309
I am scanning over a large amount of data and looking for common trends in it. Every time I meet a recurrence of a unit, I want to increment the count of it. What is the best data structure or way to hold this data. I need to be able to search it quickly, and also have a count with each unit of data.
© Stack Overflow or respective owner