Implementation of hash table in C & java. Also give some best collision resolutions for hash table¿ | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 1

Implementation of hash table in C & java. Also give some best collision resolutions for hash table¿

4th Sep 2017, 5:19 AM
shivam gupta
shivam gupta - avatar
1 ответ
+ 1
(in C) Which data structure of hash map do you want ? I know two of them, a big array where every block points to : - a classical linked list of all elements with the same hash code - the block of another big array separated in big blocks (first for key, second for data and last for the index of the next element with the same hash code in this big array)
4th Sep 2017, 7:18 AM
Baptiste E. Prunier
Baptiste E. Prunier - avatar