I am trying to understand the HashTable open-addressing technique. I see there are three approaches: linear, quadratic and double hashing. I'm wondering are these techniques used:
- to find an index of the main array and no bucketing is involved
- or used when our buckets are arrays too and we are trying to add it to the bucket and we are not sure where to add.
Thanks in advance.