I'm looking for the most ideal data structure (for performance and ease of use) from which values can be retrieved by string key or index. Dictionary doesn't work because you can't really retrieve by index. Any ideas?
|
1
|
|
|
|
|
|
You want the OrderedDictionary class. You will need to include the System.Collections.Specialized namespace:
|
||||||||
|
|
|
I recommend using SortedDictionary<string, TValue> or SortedList<string, TValue>. Both have O(log n) search performance. The differences are, as quoted from the MSDN library:
In my experience SortedDictionary is more adequate for most typical business scenarios, since the data is usually initially unsorted when using structures like this, and the memory overhead of SortedDictionary is seldom critical. But if performance is key for you, I suggest you implement both and do measurements. |
||
|
|
|
A Dictionary could work with linq. Although i dont know about possible performance issues. Dictionary.ElementAt(index); |
||
|
|
|
One word of warning. The For most operations with reasonable amounts of data, this is completely inacceptable. Furthermore, the data structure stores elements both in a linear vector and in a hash table, resulting in some memory overhead. If retrieval by index doesn't happen too often, a If, on the other hand, access by index is the norm, then stop using dictionary data structures alltogether and simply store your values in a /EDIT: Of course, the latter is also a dictionary data structure in the theoretical sense. You could even encapsulate it in a class implementing the appropriate interface. |
||||
|
|
|
You are looking for something like the SortedList class (here's the generic version as well). |
||||||||||
|
|
|
There's System.Collections.ObjectModel.KeyedCollection< string,TItem>, which derives from Collection< TItem>. Retrieval is O(1).
|
||||||
|
|
|
Hash based collections (Dictionary, Hashtable, HashSet) are out because you won't have an index, since you want an index, I'd use a nested generic:
Of course, you lose the O(1) Key lookup that you get with hashes. |
||||
|
|
|
My original answer of hash table is incorrect. It cannot have indexes. Move along. |
||||
|
