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
import "github.com/davecgh/go-spew/spew"
// func (ts TriedString) WordIndex(idx uint) uint {
// w := ts[idx]
// if w >= 'a' && w <= 'z' {
@ -90,6 +92,10 @@ func (tried *Tried) Has(words string) bool {
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) {
var traversal func(*Node)
@ -112,10 +118,31 @@ func (tried *Tried) Traversal(every func(cidx uint, value interface{}) bool) {
traversal(root)
}
// func (tried *Tried) String() []string {
// var result []string
// tried.Traversal(func(cidx uint, value interface{}) bool {
// result = append(result, spew.)
// })
// return result
// }
func (tried *Tried) WordsArray() []string {
var result []string
var traversal func([]rune, *Node)
traversal = func(prefix []rune, cur *Node) {
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 {
iw := uint(w)
if iw > 'a' {
if iw >= 'a' {
return iw - 'a'
}
return iw - 'A' + 26
@ -84,7 +84,7 @@ func indexWordUpperLower(w uint) byte {
//
func wordIndexLowerDigital(w byte) uint {
iw := uint(w)
if iw > 'a' {
if iw >= 'a' {
return iw - 'a'
}
return iw - '0' + 26
@ -100,7 +100,7 @@ func indexWordLowerDigital(w uint) byte {
//
func wordIndexUpperDigital(w byte) uint {
iw := uint(w)
if iw > 'A' {
if iw >= 'A' {
return iw - 'A'
}
return iw - '0' + 26
@ -116,9 +116,9 @@ func indexWordUpperDigital(w uint) byte {
//
func wordIndexUpperLowerDigital(w byte) uint {
iw := uint(w)
if iw > 'a' {
if iw >= 'a' {
return iw - 'a'
} else if iw > 'A' {
} else if iw >= 'A' {
return iw - 'A' + 26
}
return iw - '0' + 52

View File

@ -10,12 +10,9 @@ import (
)
func TestTried_NewWith(t *testing.T) {
tried := NewWithWordType(WordIndex32to126)
words := "~ 23fd "
tried.Put(words)
if tried.Get(words) == nil {
t.Error("should be not nil")
}
var tried *Tried
var words string
tried = NewWithWordType(WordIndexLower)
words = "az"
@ -37,6 +34,63 @@ func TestTried_NewWith(t *testing.T) {
if tried.Get(words) == 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) {