What is the difference between a hash map, hash set, hash dictionary?

Can someone explain me the difference between the following structures:

  • Hash map
  • Hash table
  • Hash set and
  • Hash dictionary
+3
source share
1 answer

HashMap, HashTable, and HashDictionary all mean a dictionary matching unique unordered keys with corresponding values, implemented using hash codes.

HashSet means a unique unordered set implemented using hash codes.

+2
source

Source: https://habr.com/ru/post/1788993/


All Articles