TODO: Test Prefix 所有Index2word函数是否正确

This commit is contained in:
eson 2019-08-20 01:39:14 +08:00
parent 5a7a4f2c92
commit 6679cba338
3 changed files with 99 additions and 18 deletions

View File

@ -1,5 +1,7 @@
package tried package tried
import "github.com/davecgh/go-spew/spew"
// func (ts TriedString) WordIndex(idx uint) uint { // func (ts TriedString) WordIndex(idx uint) uint {
// w := ts[idx] // w := ts[idx]
// if w >= 'a' && w <= 'z' { // if w >= 'a' && w <= 'z' {
@ -90,6 +92,10 @@ func (tried *Tried) Has(words string) bool {
return tried.Get(words) != nil return tried.Get(words) != nil
} }
func (tried *Tried) HasPrefix(words string) bool {
return tried.Get(words) != nil
}
func (tried *Tried) Traversal(every func(cidx uint, value interface{}) bool) { func (tried *Tried) Traversal(every func(cidx uint, value interface{}) bool) {
var traversal func(*Node) var traversal func(*Node)
@ -112,10 +118,31 @@ func (tried *Tried) Traversal(every func(cidx uint, value interface{}) bool) {
traversal(root) traversal(root)
} }
// func (tried *Tried) String() []string { func (tried *Tried) WordsArray() []string {
// var result []string var result []string
// tried.Traversal(func(cidx uint, value interface{}) bool {
// result = append(result, spew.) var traversal func([]rune, *Node)
// }) traversal = func(prefix []rune, cur *Node) {
// return result
// } for i, n := range cur.data {
if n != nil {
prefix = append(prefix, rune(tried.wiStore.Index2Byte(uint(i))))
traversal(prefix, n)
if n.value != nil {
result = append(result, string(prefix))
}
}
}
}
if tried.root != nil {
traversal([]rune{}, tried.root)
}
return result
}
func (tried *Tried) String() string {
return spew.Sprint(tried.WordsArray())
}

View File

@ -67,7 +67,7 @@ func indexWordDigital(w uint) byte {
// //
func wordIndexUpperLower(w byte) uint { func wordIndexUpperLower(w byte) uint {
iw := uint(w) iw := uint(w)
if iw > 'a' { if iw >= 'a' {
return iw - 'a' return iw - 'a'
} }
return iw - 'A' + 26 return iw - 'A' + 26
@ -84,7 +84,7 @@ func indexWordUpperLower(w uint) byte {
// //
func wordIndexLowerDigital(w byte) uint { func wordIndexLowerDigital(w byte) uint {
iw := uint(w) iw := uint(w)
if iw > 'a' { if iw >= 'a' {
return iw - 'a' return iw - 'a'
} }
return iw - '0' + 26 return iw - '0' + 26
@ -100,7 +100,7 @@ func indexWordLowerDigital(w uint) byte {
// //
func wordIndexUpperDigital(w byte) uint { func wordIndexUpperDigital(w byte) uint {
iw := uint(w) iw := uint(w)
if iw > 'A' { if iw >= 'A' {
return iw - 'A' return iw - 'A'
} }
return iw - '0' + 26 return iw - '0' + 26
@ -116,9 +116,9 @@ func indexWordUpperDigital(w uint) byte {
// //
func wordIndexUpperLowerDigital(w byte) uint { func wordIndexUpperLowerDigital(w byte) uint {
iw := uint(w) iw := uint(w)
if iw > 'a' { if iw >= 'a' {
return iw - 'a' return iw - 'a'
} else if iw > 'A' { } else if iw >= 'A' {
return iw - 'A' + 26 return iw - 'A' + 26
} }
return iw - '0' + 52 return iw - '0' + 52

View File

@ -10,12 +10,9 @@ import (
) )
func TestTried_NewWith(t *testing.T) { func TestTried_NewWith(t *testing.T) {
tried := NewWithWordType(WordIndex32to126)
words := "~ 23fd " var tried *Tried
tried.Put(words) var words string
if tried.Get(words) == nil {
t.Error("should be not nil")
}
tried = NewWithWordType(WordIndexLower) tried = NewWithWordType(WordIndexLower)
words = "az" words = "az"
@ -37,6 +34,63 @@ func TestTried_NewWith(t *testing.T) {
if tried.Get(words) == nil { if tried.Get(words) == nil {
t.Error("should be not nil") t.Error("should be not nil")
} }
tried = NewWithWordType(WordIndexUpperDigital)
words = "AZ021365546987"
tried.Put(words)
if tried.Get(words) == nil {
t.Error("should be not nil")
}
tried = NewWithWordType(WordIndexLowerDigital)
words = "azfdgyjmnbjhkpuizxasd021365546987"
tried.Put(words)
if tried.Get(words) == nil {
t.Error("should be not nil")
}
tried = NewWithWordType(WordIndexUpperLowerDigital)
words = "AZazsdfsd131209"
tried.Put(words)
if tried.Get(words) == nil {
t.Error("should be not nil")
}
tried = NewWithWordType(WordIndex256)
words = "21`3tcdbxcfhyop8901zc[]\\'/?()#$%^&**! 09-阿萨德发生的官方说的对符合规定"
tried.Put(words)
if tried.Get(words) == nil {
t.Error("should be not nil")
}
tried = NewWithWordType(WordIndex32to126)
words = " 21`3tcdbxcfhyop8901zc[]\\'/?()#$%^&**! "
tried.Put(words)
if tried.Get(words) == nil {
t.Error("should be not nil")
}
}
func TestTried_String(t *testing.T) {
var tried *Tried
var wordsCollection []string
var wordsList [][]string
var triedList []*Tried
triedList = append(triedList, NewWithWordType(WordIndexLower))
wordsList = append(wordsList, []string{"adazx", "assdfhgnvb", "ewqyiouyasdfmzvxz"})
for i := 0; i < len(triedList); i++ {
tried = triedList[i]
wordsCollection = wordsList[i]
for _, words := range wordsCollection {
tried.Put(words)
if tried.Get(words) == nil {
t.Error("should be not nil")
}
}
t.Error(tried.WordsArray())
}
} }
func TestTried_PutAndGet1(t *testing.T) { func TestTried_PutAndGet1(t *testing.T) {