-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhash_map.js
94 lines (74 loc) · 1.58 KB
/
hash_map.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
function HashMap(size) {
const maxRange = 30;
const stdSize = 300000;
let length_ = 0;
if (size === undefined){
size = this.stdSize;
}
map = new Array(size).fill(undefined);
if (Object.seal) {
Object.seal(map);
}
this.length = function() {
return length_;
}
function hash (state){
if (state === undefined){
let debug = 0;
}
let hashCode = 1;
for (let marble of state){
hashCode = 17 * hashCode + marble;
hashCode = hashCode & hashCode; //to 32-bit :OOOO
}
return hashCode;
}
function arrayEquals(a, b) {
if (a.length !== b.length) {
return false;
}
for (var i = 0; i < a.length; i++) {
if (a[i] !== b[i]) {
return false;
}
}
return true;
}
this.put = function ( state ) {
return;
let hashCode = hash(state);
let index = hashCode % map.length;
let maxRange = 10;
while (maxRange > 0){
if (map[index] === undefined){
map[index] = state;
//console.log(length_ + ": state was added with hash: " + hashCode + " at position " + index + " where original hash index was " + (hashCode % map.length));
length_++;
return true;
}
index++;
maxRange--;
}
console.log("size:" +map.length);
console.log("filled:" + length());
console.assert(false);
return;
}
this.contains = function (state) {
return false;
let hashCode = hash(state);
let index = hashCode % map.length;
let maxRange = 10;
while (maxRange > 0){
if (map[index] === undefined) {
return false;
}
if (arrayEquals(map[index], state)) {
return true;
}
index+=1;
maxRange--;
}
return false;
}
}