focus/tree/tried/tried.go
2019-08-19 15:24:22 +08:00

127 lines
2.3 KiB
Go

package tried
type TriedString string
func (ts TriedString) Size() uint {
return uint(len(ts))
}
func (ts TriedString) WordIndex(idx uint) uint {
return uint(ts[idx]) - 'a'
}
// func (ts TriedString) WordIndex(idx uint) uint {
// w := ts[idx]
// if w >= 'a' && w <= 'z' {
// return uint(w) - 'a'
// } else if w >= 'A' && w <= 'Z' {
// return uint(w) - 'A' + 26
// } else {
// return uint(w) - '0' + 52
// }
// }
type ObjectIndex interface {
WordIndex(idx uint) uint
Size() uint
}
type Tried struct {
root *Node
datasize uint
}
type Node struct {
data []*Node
value interface{}
}
func New() *Tried {
tried := &Tried{}
tried.root = new(Node)
tried.datasize = 62
return tried
}
func (tried *Tried) wordIndex(w byte) uint {
return uint(w) - 'a'
}
func (tried *Tried) Put(words ObjectIndex, values ...interface{}) {
cur := tried.root
var n *Node
for i := uint(0); i < words.Size(); i++ {
w := words.WordIndex(i)
if cur.data == nil {
cur.data = make([]*Node, tried.datasize)
}
if n = cur.data[w]; n == nil {
n = new(Node)
cur.data[w] = n
}
cur = n
}
vlen := len(values)
switch vlen {
case 0:
cur.value = tried
case 1:
cur.value = values[0]
case 2:
// TODO: 执行函数 values[1] 为函数类型 func (cur *Node, value interface{}) ...可以插入, 也可以不插入
default:
panic("unknow select to do")
}
}
func (tried *Tried) Get(words ObjectIndex) interface{} {
cur := tried.root
var n *Node
for i := uint(0); i < words.Size(); i++ {
w := words.WordIndex(i) //TODO: 升级Index 函数
if n = cur.data[w]; n == nil {
return nil
}
cur = n
}
return n.value
}
func (tried *Tried) Has(words ObjectIndex) bool {
return tried.Get(words) != nil
}
func (tried *Tried) Traversal(every func(cidx uint, value interface{}) bool) {
var traversal func(*Node)
traversal = func(cur *Node) {
if cur != nil {
for i, n := range cur.data {
if n != nil {
if n.value != nil {
if !every(uint(i), n.value) {
return
}
}
traversal(n)
}
}
}
}
root := tried.root
traversal(root)
}
// func (tried *Tried) String() []string {
// var result []string
// tried.Traversal(func(cidx uint, value interface{}) bool {
// result = append(result, spew.)
// })
// return result
// }