Namespace Advanced.Algorithms.DataStructures.Dictionaries
Classes
Dictionary<K, V>
A dictionary implementation.
SortedDictionary<K, V>
A sorted Dictionary implementation using balanced binary search tree. IEnumerable will enumerate in sorted order. This may be better than regular Dictionary implementation which can give o(K) in worst case (but O(1) amortized when collisions K is avoided).
Enums
DictionaryType
The dictionary implementation type.