Tagged Questions
6
votes
6answers
2k views
Should a .NET generic dictionary be initialised with a capacity equal to the number of items it will contain?
If I have, say, 100 items that'll be stored in a dictionary, should I initialise it thus?
var myDictionary = new Dictionary<Key, Value>(100);
My understanding is that the .NET dictionary ...
2
votes
2answers
263 views
Is it possible to give a python dict an initial capacity (and is it usefull)
I am filling a python dict with around 10,000,000 items. My understanding of dict (or hashtables) is that when too much elements get in them, the need to resize, an operation that cost quite some ...
0
votes
1answer
207 views
Getting Numbers From A CFDictionary For Use In Calculations, iPhone
I found this in my travels:
http://www.opensource.apple.com/source/IOKitUser/IOKitUser-502/ps.subproj/IOPSKeys.h
How would I get the values (as a number) of:
#define kIOPSMaxCapacityKey "Max ...