Name: Anonymous 2010-06-01 21:26
Anyone got a suggestion for a efficient way to store a bunch of numbers (bytes), with the key being a byte? Using C#
byte[] arr--oh wait IHBT
List<byte>[] numbers = new List<byte>[256];char is a Unicode character and not a byte?
Dictionary is implemented, but I always thought that it involved a tree.Hashtable class; but I believe that it doesn't really have O(1) lookup.
(λ (x) 1) as a hash function.