将字符串哈希为整数
将输入的字符串哈希为一个整数。
- 使用
String.prototype.split()
和Array.prototype.reduce()
来创建输入字符串的哈希值,利用位移操作。
const sdbm = str => {
let arr = str.split('');
return arr.reduce(
(hashCode, currentVal) =>
(hashCode =
currentVal.charCodeAt(0) +
(hashCode << 6) +
(hashCode << 16) -
hashCode),
0
);
};
sdbm('name'); // -3521204949