jump.go 517 B

123456789101112131415161718192021222324252627282930
  1. package jump
  2. import (
  3. "bytes"
  4. "crypto/md5"
  5. "encoding/binary"
  6. )
  7. //Hash get result by hash
  8. func Hash(key uint64, numBuckets int) int32 {
  9. var b int64 = -1
  10. var j int64
  11. for j < int64(numBuckets) {
  12. b = j
  13. key = key*2862933555777941757 + 1
  14. j = int64(float64(b+1) * (float64(int64(1)<<31) / float64((key>>33)+1)))
  15. }
  16. return int32(b)
  17. }
  18. //Md5 get result by Md5
  19. func Md5(key string) uint64 {
  20. var x uint64
  21. s := md5.Sum([]byte(key))
  22. b := bytes.NewBuffer(s[:])
  23. binary.Read(b, binary.BigEndian, &x)
  24. return x
  25. }