Namespace Advanced.Algorithms.DataStructures.HashSets
Classes
HashSet<T>
A hash table implementation.
SortedHashSet<T>
A sorted HashSet implementation using balanced binary search tree. IEnumerable will enumerate in sorted order. This may be better than regular HashSet implementation which can give o(K) in worst case (but O(1) amortized when collisions K is avoided).
Enums
HashSetType
The hash set implementation type.