feat: complete Dart codes for chapter_hashing (#566)
parent
ff58d4113c
commit
62e8f0df50
@ -0,0 +1,34 @@
|
|||||||
|
/**
|
||||||
|
* File: built_in_hash.dart
|
||||||
|
* Created Time: 2023-06-25
|
||||||
|
* Author: liuyuxin (gvenusleo@gmail.com)
|
||||||
|
*/
|
||||||
|
|
||||||
|
import '../chapter_stack_and_queue/linkedlist_deque.dart';
|
||||||
|
|
||||||
|
/* Driver Code */
|
||||||
|
void main() {
|
||||||
|
int num = 3;
|
||||||
|
int hashNum = num.hashCode;
|
||||||
|
print("整数 $num 的哈希值为 $hashNum");
|
||||||
|
|
||||||
|
bool bol = true;
|
||||||
|
int hashBol = bol.hashCode;
|
||||||
|
print("布尔值 $bol 的哈希值为 $hashBol");
|
||||||
|
|
||||||
|
double dec = 3.14159;
|
||||||
|
int hashDec = dec.hashCode;
|
||||||
|
print("小数 $dec 的哈希值为 $hashDec");
|
||||||
|
|
||||||
|
String str = "Hello 算法";
|
||||||
|
int hashStr = str.hashCode;
|
||||||
|
print("字符串 $str 的哈希值为 $hashStr");
|
||||||
|
|
||||||
|
List arr = [12836, "小哈"];
|
||||||
|
int hashArr = arr.hashCode;
|
||||||
|
print("数组 $arr 的哈希值为 $hashArr");
|
||||||
|
|
||||||
|
ListNode obj = new ListNode(0);
|
||||||
|
int hashObj = obj.hashCode;
|
||||||
|
print("节点对象 $obj 的哈希值为 $hashObj");
|
||||||
|
}
|
@ -0,0 +1,62 @@
|
|||||||
|
/**
|
||||||
|
* File: simple_hash.dart
|
||||||
|
* Created Time: 2023-06-25
|
||||||
|
* Author: liuyuxin (gvenusleo@gmail.com)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* 加法哈希 */
|
||||||
|
int addHash(String key) {
|
||||||
|
int hash = 0;
|
||||||
|
final int MODULUS = 1000000007;
|
||||||
|
for (int i = 0; i < key.length; i++) {
|
||||||
|
hash = (hash + key.codeUnitAt(i)) % MODULUS;
|
||||||
|
}
|
||||||
|
return hash;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 乘法哈希 */
|
||||||
|
int mulHash(String key) {
|
||||||
|
int hash = 0;
|
||||||
|
final int MODULUS = 1000000007;
|
||||||
|
for (int i = 0; i < key.length; i++) {
|
||||||
|
hash = (31 * hash + key.codeUnitAt(i)) % MODULUS;
|
||||||
|
}
|
||||||
|
return hash;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 异或哈希 */
|
||||||
|
int xorHash(String key) {
|
||||||
|
int hash = 0;
|
||||||
|
final int MODULUS = 1000000007;
|
||||||
|
for (int i = 0; i < key.length; i++) {
|
||||||
|
hash ^= key.codeUnitAt(i);
|
||||||
|
}
|
||||||
|
return hash & MODULUS;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 旋转哈希 */
|
||||||
|
int rotHash(String key) {
|
||||||
|
int hash = 0;
|
||||||
|
final int MODULUS = 1000000007;
|
||||||
|
for (int i = 0; i < key.length; i++) {
|
||||||
|
hash = ((hash << 4) ^ (hash >> 28) ^ key.codeUnitAt(i)) % MODULUS;
|
||||||
|
}
|
||||||
|
return hash;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Dirver Code */
|
||||||
|
void main() {
|
||||||
|
String key = "Hello 算法";
|
||||||
|
|
||||||
|
int hash = addHash(key);
|
||||||
|
print("加法哈希值为 $hash");
|
||||||
|
|
||||||
|
hash = mulHash(key);
|
||||||
|
print("乘法哈希值为 $hash");
|
||||||
|
|
||||||
|
hash = xorHash(key);
|
||||||
|
print("异或哈希值为 $hash");
|
||||||
|
|
||||||
|
hash = rotHash(key);
|
||||||
|
print("旋转哈希值为 $hash");
|
||||||
|
}
|
Loading…
Reference in new issue