09 Collision Handling
Collision Handling¶
eliminates collisions in hashing
Collision | Search Complexity | Disadvantage | |
---|---|---|---|
Separate Chaining | array with buckets pointing to linked lists | memory wastage | |
Linear Probing | clustering | ||
Quadratic Probing | some elements may not be able to stored | ||
Double Hashing |
Problem with probing is the possibility of full bucket
Linear Probing Search¶
-
Compute
-
Start at array cell
-
Probe consecutive locations until
return | case |
---|---|
present | |
not present | empty cell |
something more
Double Hashing¶
use a secondary hash function
Hashing¶
where
- is prime and
- is the no of elements
Bucket Placement¶
Load Factor¶
\[ \lambda = \frac{n}{N} \]
- \(n\) is the no of keys
- \(N\) is the no of buckets
Load Factor should preferably be \(\lambda < 0.75\), or atleast \(\lambda < 1\)