js中好用的散列函数
参数key类型为字符串
hashTable 应用场景:
快速查找集合中的元素
function hashFun(key){
let hash=5381;
for(let i=0;i<key.length;i++){
hash=hash*33+key.charCodeAt(i);
}
return hash%1013;
}
标签:函数,js,let,key,中好,散列
来源: https://blog.csdn.net/weixin_43601527/article/details/114458655