What is a hash function?
What is the complexity of adding a pair to a HashTable? Why is it what it is?
Сложността на добавяне на двойка (ключ-стойност) към хеш таблица обикновено е O(1) в средния случай, но може да бъде O(n) в най-лошия случай (защото може да имаме колизия).
How many ways do you know for handling collisions?
What is the difference between HashMap and TreeMap?
What is the complexity of retrieving a pair from a HashMap?
What is the complexity of retrieving a pair from a TreeMap?