我有一个 AcccAA 类型的键,其中 A-[A...Z](大写字母),c 是 [1..9]。我有 1500 段。现在我的临时哈希函数
int HashFunc(string key){
int Adress = ((key[0] + key[1] + key[2] + key[3] + key[4] + key[5]) - 339) * 14;
return Adress;
}
和 Excel 在中心显示很多碰撞(从 400 到 900)
请告诉我散列函数更均匀。