-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflatmap.go
125 lines (108 loc) · 2.26 KB
/
flatmap.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
package flatmap
import (
"cmp"
"slices"
)
type FlatMap[K cmp.Ordered, V any] struct {
data []Pair[K, V]
}
func NewFlatMap[K cmp.Ordered, V any](capacity int) *FlatMap[K, V] {
return &FlatMap[K, V]{
data: make([]Pair[K, V], 0, capacity),
}
}
func (f *FlatMap[K, V]) upperBound(key K) int {
count := len(f.data)
first := 0
for count > 0 {
middle := first
step := int(uint(count) >> 1)
middle += step
if !(key < f.data[middle].First) {
middle++
first = middle
count -= step + 1
} else {
count = step
}
}
return first
}
func (f *FlatMap[K, V]) lowerBound(key K) int {
count := len(f.data)
first := 0
for count > 0 {
middle := first
step := int(uint(count) >> 1)
middle += step
if key > f.data[middle].First {
middle++
first = middle
count -= step + 1
} else {
count = step
}
}
return first
}
func (f *FlatMap[K, V]) Get(key K) (V, bool) {
index := f.lowerBound(key)
if index >= len(f.data) || f.data[index].First != key {
var emptyValue V
return emptyValue, false
}
return f.data[index].Second, true
}
func (f *FlatMap[K, V]) Set(key K, value V) {
index := f.upperBound(key)
switch {
case index > 0 && index <= len(f.data) && f.data[index-1].First == key:
f.data[index-1].Second = value
default:
f.data = slices.Insert(f.data, index, Pair[K, V]{key, value})
}
}
func (f *FlatMap[K, V]) Delete(key K) {
index := f.lowerBound(key)
if index >= len(f.data) {
return
}
if f.data[index].First != key {
return
}
f.data = slices.Delete(f.data, index, index+1)
}
func (f *FlatMap[K, V]) Length() int {
return len(f.data)
}
func (f *FlatMap[K, V]) Reset() {
f.data = nil
}
type FlatMapIter[K cmp.Ordered, V any] struct {
pos int
data []Pair[K, V]
}
func (fi *FlatMapIter[K, V]) Next() {
fi.pos++
}
func (fi *FlatMapIter[K, V]) Val() (K, V) {
var key K
var value V
if fi.pos >= 0 && fi.pos < len(fi.data) {
key = fi.data[fi.pos].First
value = fi.data[fi.pos].Second
}
return key, value
}
func (fi *FlatMapIter[K, V]) HasNext() bool {
return fi.pos >= len(fi.data)
}
func newFlatMapIter[K cmp.Ordered, V any](pos int, data []Pair[K, V]) *FlatMapIter[K, V] {
return &FlatMapIter[K, V]{
pos: pos,
data: data,
}
}
func (f *FlatMap[K, V]) Range() *FlatMapIter[K, V] {
return newFlatMapIter(0, f.data)
}