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

前端 未结 1 1957
走了就别回头了
走了就别回头了 2021-01-06 18:13

Can somebody explain me the difference between the following structures:

  1. Hash Map
  2. Hash Table,
  3. Hash Set, and
  4. Hash Dictionary
相关标签:
1条回答
  • 2021-01-06 18:43

    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.

    0 讨论(0)
提交回复
热议问题