sdbm-hash algorithm

I added the sdbm hash algorithm
This commit is contained in:
Christian Bender
2017-12-24 23:29:13 +01:00
committed by GitHub
parent 421f4f46a8
commit 96974c2ed1

13
snippets/sdbm_hash.md Normal file
View File

@ -0,0 +1,13 @@
This function implements the **sdbm** hash-algorithm.
It uses the charCodeAt-methode and the shift-operator.
``` js
function sdbm(s) {
var hashCode = new Number();
for (var i = 0; i < s.length; i++) {
hashCode = s.charCodeAt(i) + (hashCode << 6) + (hashCode << 16) - hashCode;
}
return hashCode;
}
```