Concept
Secondary Clustering 0
Secondary clustering is a phenomenon in open addressing hash tables where multiple keys hash to the same initial index, leading to clusters of occupied slots that can degrade performance. This occurs even when different keys have different hash values, as they may follow the same probe sequence once a collision occurs.
Relevant Degrees