Skip to content
Advertisement

Tag: hashtable

When does a HashTable / Python dict stop probing?

In Java I’m building a datastructure that is supposed to resemble dictionaries in Python. (As far as I understand this is called a “HashTable” in java context.) I have read the following Python documentation in order to arrive at the probing function (as I wished to prevent using linear probing) Now I have come to a point where Im trying

Advertisement