0
Hash table in C++
Hi guys! I've a problem with the hash table's implementation. I have to do a code where i can take books from a shelf and insert on this other of them. The elements are not in order, so for this reason i think to use an hash table instead of a stack. The problem is I don't now how to do thiscin c++. In theory i know the data structure, but not in the practice. Someone can help me? Thank you so much!
1 ответ
0
Never did one myself on c++ but I found this article:
https://www.geeksforgeeks.org/implementing-hash-table-open-addressing-linear-probing-cpp/