chingupt
chingupt

Reputation: 413

what is the difference between hash map, hash set, hash dictionary?

Can somebody explain me the difference between the following structures:

  1. Hash Map
  2. Hash Table,
  3. Hash Set, and
  4. Hash Dictionary

Upvotes: 4

Views: 2284

Answers (1)

SLaks
SLaks

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

Related Questions