Reputation: 413
Can somebody explain me the difference between the following structures:
Upvotes: 4
Views: 2284
Reputation: 887195
HashMap, HashTable, and HashDictionary all mean a dictionary, mapping unique unordered keys to corresponding values, implemented using hashcodes.
HashSet means a unique, unordered set, implemented using hashcodes.
Upvotes: 1