mirror of
https://github.com/krahets/hello-algo.git
synced 2026-05-04 03:20:26 +08:00
* Review the EN heading format. * Fix pythontutor headings. * Fix pythontutor headings. * bug fixes * Fix headings in **/summary.md * Revisit the CN-to-EN translation for Python code using Claude-4.5 * Revisit the CN-to-EN translation for Java code using Claude-4.5 * Revisit the CN-to-EN translation for Cpp code using Claude-4.5. * Fix the dictionary. * Fix cpp code translation for the multipart strings. * Translate Go code to English. * Update workflows to test EN code. * Add EN translation for C. * Add EN translation for CSharp. * Add EN translation for Swift. * Trigger the CI check. * Revert. * Update en/hash_map.md * Add the EN version of Dart code. * Add the EN version of Kotlin code. * Add missing code files. * Add the EN version of JavaScript code. * Add the EN version of TypeScript code. * Fix the workflows. * Add the EN version of Ruby code. * Add the EN version of Rust code. * Update the CI check for the English version code. * Update Python CI check. * Fix cmakelists for en/C code. * Fix Ruby comments
56 lines
989 B
Go
56 lines
989 B
Go
// File: simple_hash.go
|
|
// Created Time: 2023-06-23
|
|
// Author: Reanon (793584285@qq.com)
|
|
|
|
package chapter_hashing
|
|
|
|
import "fmt"
|
|
|
|
/* Additive hash */
|
|
func addHash(key string) int {
|
|
var hash int64
|
|
var modulus int64
|
|
|
|
modulus = 1000000007
|
|
for _, b := range []byte(key) {
|
|
hash = (hash + int64(b)) % modulus
|
|
}
|
|
return int(hash)
|
|
}
|
|
|
|
/* Multiplicative hash */
|
|
func mulHash(key string) int {
|
|
var hash int64
|
|
var modulus int64
|
|
|
|
modulus = 1000000007
|
|
for _, b := range []byte(key) {
|
|
hash = (31*hash + int64(b)) % modulus
|
|
}
|
|
return int(hash)
|
|
}
|
|
|
|
/* XOR hash */
|
|
func xorHash(key string) int {
|
|
hash := 0
|
|
modulus := 1000000007
|
|
for _, b := range []byte(key) {
|
|
fmt.Println(int(b))
|
|
hash ^= int(b)
|
|
hash = (31*hash + int(b)) % modulus
|
|
}
|
|
return hash & modulus
|
|
}
|
|
|
|
/* Rotational hash */
|
|
func rotHash(key string) int {
|
|
var hash int64
|
|
var modulus int64
|
|
|
|
modulus = 1000000007
|
|
for _, b := range []byte(key) {
|
|
hash = ((hash << 4) ^ (hash >> 28) ^ int64(b)) % modulus
|
|
}
|
|
return int(hash)
|
|
}
|