forked from zllangct/ecs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsparse_array.go
154 lines (135 loc) · 2.89 KB
/
sparse_array.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
package ecs
type SparseArray[K Integer, V any] struct {
UnorderedCollection[V]
indices []int32
idx2Key map[int32]int32
maxKey K
shrinkThreshold int32
initSize int
}
func NewSparseArray[K Integer, V any](initSize ...int) *SparseArray[K, V] {
typ := TypeOf[V]()
eleSize := typ.Size()
size := InitMaxSize / eleSize
if len(initSize) > 0 {
size = uintptr(initSize[0]) / eleSize
}
c := &SparseArray[K, V]{
UnorderedCollection: UnorderedCollection[V]{
data: make([]V, 0, size),
eleSize: eleSize,
},
idx2Key: map[int32]int32{},
initSize: int(size),
}
if size > 0 {
c.indices = make([]int32, 0, size)
}
switch any(*new(K)).(type) {
case int8, uint8:
c.shrinkThreshold = 127
case uint16:
c.shrinkThreshold = 255
default:
c.shrinkThreshold = 1024
}
return c
}
func (g *SparseArray[K, V]) Add(key K, value *V) *V {
length := len(g.indices)
// already existed
if key < K(length) && g.indices[key] != 0 {
return nil
}
_, idx := g.UnorderedCollection.Add(value)
if key >= K(length) {
m := K(0)
if length == 0 {
m = key + 1
} else if length < int(g.shrinkThreshold) {
m = key * 2
} else {
m = key * 5 / 4
}
newIndices := make([]int32, m)
count := copy(newIndices, g.indices)
if count != length {
panic("copy failed")
}
g.indices = newIndices
}
g.idx2Key[int32(idx)] = int32(key)
g.indices[key] = int32(idx + 1)
if key > g.maxKey {
g.maxKey = key
}
return &g.data[idx]
}
func (g *SparseArray[K, V]) Remove(key K) *V {
if key > g.maxKey {
return nil
}
idx := g.indices[key] - 1
removed, oldIndex, newIndex := g.UnorderedCollection.Remove(int64(idx))
lastKey := g.idx2Key[int32(oldIndex)]
g.indices[lastKey] = int32(newIndex + 1)
g.indices[key] = 0
g.idx2Key[idx] = lastKey
delete(g.idx2Key, int32(oldIndex))
g.shrink(key)
return removed
}
func (g *SparseArray[K, V]) Exist(key K) bool {
if key > g.maxKey {
return false
}
return !(g.indices[key] == 0)
}
func (g *SparseArray[K, V]) Get(key K) *V {
if key > g.maxKey {
return nil
}
idx := g.indices[key] - 1
if idx < 0 {
return nil
}
return g.UnorderedCollection.Get(int64(idx))
}
func (g *SparseArray[K, V]) Clear() {
if g.Len() == 0 {
return
}
g.UnorderedCollection.Clear()
if int(g.maxKey) < 1024 {
for i := 0; i < len(g.indices); i++ {
g.indices[i] = 0
}
} else {
g.indices = make([]int32, 0, g.initSize)
}
g.maxKey = 0
g.idx2Key = map[int32]int32{}
}
func (g *SparseArray[K, V]) shrink(key K) {
if key < g.maxKey {
return
}
g.maxKey = 0
for i := key; i > 0; i-- {
if g.indices[i] != 0 {
g.maxKey = i
break
}
}
if int32(g.maxKey) < g.shrinkThreshold {
g.maxKey = K(g.shrinkThreshold)
}
if len(g.indices) > 1024 && int(g.maxKey) < len(g.indices)/2 {
m := (g.maxKey + 1) * 5 / 4
newIndices := make([]int32, m)
count := copy(newIndices, g.indices[:m])
if count != int(m) {
panic("copy failed")
}
}
}