67 lines
1.5 KiB
C#
67 lines
1.5 KiB
C#
/**
|
|
* File: simple_hash.cs
|
|
* Created Time: 2023-06-26
|
|
* Author: hpstory (hpstory1024@163.com)
|
|
*/
|
|
|
|
namespace hello_algo.chapter_hashing;
|
|
|
|
public class simple_hash {
|
|
/* Additive hash */
|
|
int AddHash(string key) {
|
|
long hash = 0;
|
|
const int MODULUS = 1000000007;
|
|
foreach (char c in key) {
|
|
hash = (hash + c) % MODULUS;
|
|
}
|
|
return (int)hash;
|
|
}
|
|
|
|
/* Multiplicative hash */
|
|
int MulHash(string key) {
|
|
long hash = 0;
|
|
const int MODULUS = 1000000007;
|
|
foreach (char c in key) {
|
|
hash = (31 * hash + c) % MODULUS;
|
|
}
|
|
return (int)hash;
|
|
}
|
|
|
|
/* XOR hash */
|
|
int XorHash(string key) {
|
|
int hash = 0;
|
|
const int MODULUS = 1000000007;
|
|
foreach (char c in key) {
|
|
hash ^= c;
|
|
}
|
|
return hash & MODULUS;
|
|
}
|
|
|
|
/* Rotational hash */
|
|
int RotHash(string key) {
|
|
long hash = 0;
|
|
const int MODULUS = 1000000007;
|
|
foreach (char c in key) {
|
|
hash = ((hash << 4) ^ (hash >> 28) ^ c) % MODULUS;
|
|
}
|
|
return (int)hash;
|
|
}
|
|
|
|
[Test]
|
|
public void Test() {
|
|
string key = "Hello algorithm";
|
|
|
|
int hash = AddHash(key);
|
|
Console.WriteLine("Additive hash value is" + hash);
|
|
|
|
hash = MulHash(key);
|
|
Console.WriteLine("Multiplicative hash value is" + hash);
|
|
|
|
hash = XorHash(key);
|
|
Console.WriteLine("XOR hash value is" + hash);
|
|
|
|
hash = RotHash(key);
|
|
Console.WriteLine("Rotational hash value is" + hash);
|
|
}
|
|
}
|