-
Notifications
You must be signed in to change notification settings - Fork 0
/
node.go
87 lines (72 loc) · 1.58 KB
/
node.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
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
package gorax
import "sort"
type node struct {
key string
children []*node
value interface{}
}
func (n node) isCompressed() bool {
return len(n.key) != len(n.children)
}
func (n node) isKey() bool {
return n.value != nil
}
func (n node) isLeaf() bool {
return len(n.key) == 0
}
func (n *node) getValue() interface{} {
if n.isKey() {
if _, isNil := n.value.(Nil); isNil {
return nil
}
}
return n.value
}
func (n *node) getKeysWithPrefix(prefix string) []string {
if n.isCompressed() {
return []string{prefix + n.key}
} else {
ret := make([]string, len(n.key))
for i, key := range n.key {
ret[i] = prefix + string(key)
}
return ret
}
}
func (n *node) getChildren() []*node {
return n.children
}
func (n *node) addChild(key string, child *node) {
idx := sort.Search(len(n.key), func(i int) bool { return n.key[i] >= key[0] })
if idx == len(n.key) {
n.key = n.key + key
n.children = append(n.children, child)
} else {
n.key = n.key[:idx] + key + n.key[idx:]
n.children = append(n.children[:idx+1], n.children[idx:]...)
n.children[idx] = child
}
}
func (n *node) addCompressedChild(key string, child *node) {
n.key = key
n.children = []*node{child}
}
func (n *node) removeChild(child *node) {
if n.isCompressed() {
n.key = ""
n.children = nil
return
}
for idx := range n.children {
if n.children[idx] == child {
if idx+1 < len(n.children) {
n.children = append(n.children[:idx], n.children[idx+1:]...)
n.key = n.key[:idx] + n.key[idx+1:]
} else {
n.children = n.children[:idx]
n.key = n.key[:idx]
}
break
}
}
}