Return
Styles:
Pseud0ch
,
Terminal
,
Valhalla
,
NES
,
Geocities
,
Blue Moon
.
Entire thread
c#
1
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#
4
Name:
Anonymous
2010-06-01 21:37
List<byte>[] numbers = new List<byte>[256];
No point in resorting to hashtables if you can have
O(1)
lookup with a negligible memory overhead.
Newer Posts
Don't change these.
Name:
Email:
Entire Thread
Thread List