-
Notifications
You must be signed in to change notification settings - Fork 10
/
frozentrie_test.go
48 lines (44 loc) · 904 Bytes
/
frozentrie_test.go
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
package bits
import "testing"
func TestLookup(t *testing.T) {
te := Trie{}
te.Init()
insertNotInAlphabeticalOrder(&te)
teData := te.Encode()
rd := CreateRankDirectory(teData, te.GetNodeCount()*2+1, L1, L2)
ft := FrozenTrie{}
ft.Init(teData, rd.GetData(), te.GetNodeCount())
if ft.Lookup("apple") != true {
t.Error("apple")
}
if ft.Lookup("appl") != false {
t.Error("appl")
}
if ft.Lookup("applea") != false {
t.Error("applea")
}
if ft.Lookup("orange") != true {
t.Error("orange")
}
if ft.Lookup("lamp") != true {
t.Error("lamp")
}
if ft.Lookup("hello") != true {
t.Error("hello")
}
if ft.Lookup("jello") != true {
t.Error("jello")
}
if ft.Lookup("quiz") != true {
t.Error("quiz")
}
if ft.Lookup("quize") != false {
t.Error("quize")
}
if ft.Lookup("alphaph") != false {
t.Error("alphaph")
}
if ft.Lookup("alphapha") != true {
t.Error("alphapha")
}
}