-
Notifications
You must be signed in to change notification settings - Fork 77
/
llrb_tree.go
180 lines (154 loc) · 3.22 KB
/
llrb_tree.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
package main
import (
"bytes"
)
// LLRB tree with single key values as byte slices.
// I use 2-3 tree algorithms for it. Only insertion is implemented (no delete).
type llrb_tree struct {
root *llrb_node
count int
free_nodes *llrb_node
}
func (t *llrb_tree) free_node(n *llrb_node) {
*n = llrb_node{left: t.free_nodes}
t.free_nodes = n
}
func (t *llrb_tree) alloc_node(value []byte) *llrb_node {
if t.free_nodes == nil {
return &llrb_node{value: value}
}
n := t.free_nodes
t.free_nodes = n.left
*n = llrb_node{value: value}
return n
}
func (t *llrb_tree) clear() {
t.clear_recursive(t.root)
t.root = nil
t.count = 0
}
func (t *llrb_tree) clear_recursive(n *llrb_node) {
if n == nil {
return
}
t.clear_recursive(n.left)
t.clear_recursive(n.right)
t.free_node(n)
}
func (t *llrb_tree) walk(cb func(value []byte)) {
t.root.walk(cb)
}
func (t *llrb_tree) insert_maybe(value []byte) bool {
var ok bool
t.root, ok = t.root.insert_maybe(value)
if ok {
t.count++
}
return ok
}
func (t *llrb_tree) insert_maybe_recursive(n *llrb_node, value []byte) (*llrb_node, bool) {
if n == nil {
return t.alloc_node(value), true
}
var inserted bool
switch cmp := bytes.Compare(value, n.value); {
case cmp < 0:
n.left, inserted = t.insert_maybe_recursive(n.left, value)
case cmp > 0:
n.right, inserted = t.insert_maybe_recursive(n.right, value)
default:
// don't insert anything
}
if n.right.is_red() && !n.left.is_red() {
n = n.rotate_left()
}
if n.left.is_red() && n.left.left.is_red() {
n = n.rotate_right()
}
if n.left.is_red() && n.right.is_red() {
n.flip_colors()
}
return n, inserted
}
func (t *llrb_tree) contains(value []byte) bool {
return t.root.contains(value)
}
const (
llrb_red = false
llrb_black = true
)
type llrb_node struct {
value []byte
left *llrb_node
right *llrb_node
color bool
}
func (n *llrb_node) walk(cb func(value []byte)) {
if n == nil {
return
}
n.left.walk(cb)
cb(n.value)
n.right.walk(cb)
}
func (n *llrb_node) rotate_left() *llrb_node {
x := n.right
n.right = x.left
x.left = n
x.color = n.color
n.color = llrb_red
return x
}
func (n *llrb_node) rotate_right() *llrb_node {
x := n.left
n.left = x.right
x.right = n
x.color = n.color
n.color = llrb_red
return x
}
func (n *llrb_node) flip_colors() {
n.color = !n.color
n.left.color = !n.left.color
n.right.color = !n.right.color
}
func (n *llrb_node) is_red() bool {
return n != nil && !n.color
}
func (n *llrb_node) insert_maybe(value []byte) (*llrb_node, bool) {
if n == nil {
return &llrb_node{value: value}, true
}
var inserted bool
switch cmp := bytes.Compare(value, n.value); {
case cmp < 0:
n.left, inserted = n.left.insert_maybe(value)
case cmp > 0:
n.right, inserted = n.right.insert_maybe(value)
default:
// don't insert anything
}
if n.right.is_red() && !n.left.is_red() {
n = n.rotate_left()
}
if n.left.is_red() && n.left.left.is_red() {
n = n.rotate_right()
}
if n.left.is_red() && n.right.is_red() {
n.flip_colors()
}
return n, inserted
}
func (n *llrb_node) contains(value []byte) bool {
for n != nil {
switch cmp := bytes.Compare(value, n.value); {
case cmp < 0:
n = n.left
case cmp > 0:
n = n.right
default:
return true
}
}
return false
}