-
Notifications
You must be signed in to change notification settings - Fork 205
/
Copy pathlist.go
179 lines (156 loc) · 3.51 KB
/
list.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
package util
// 带回收功能的泛型双向链表
type IList[T any] interface {
Push(*ListItem[T])
Shift() *ListItem[T]
Clear()
}
type ListItem[T any] struct {
Value T
Next, Pre *ListItem[T] `json:"-" yaml:"-"`
Pool *List[T] `json:"-" yaml:"-"` // 回收池
list *List[T]
reset bool // 是否需要重置
}
func NewListItem[T any](value T) *ListItem[T] {
return &ListItem[T]{Value: value, reset: true}
}
func (item *ListItem[T]) InsertBefore(insert *ListItem[T]) {
if insert.list != nil {
panic("item already in list")
}
item.Pre.InsertAfter(insert)
}
func (item *ListItem[T]) InsertBeforeValue(value T) (result *ListItem[T]) {
result = &ListItem[T]{Value: value}
item.InsertBefore(result)
return
}
func (item *ListItem[T]) InsertAfter(insert *ListItem[T]) {
if insert.list != nil {
panic("item already in list")
}
insert.list = item.list
insert.Next = item.Next
insert.Pre = item
item.Next.Pre = insert
item.Next = insert
item.list.Length++
}
func (item *ListItem[T]) InsertAfterValue(value T) (result *ListItem[T]) {
result = &ListItem[T]{Value: value}
item.InsertAfter(result)
return
}
func (item *ListItem[T]) IsRoot() bool {
return &item.list.ListItem == item
}
func (item *ListItem[T]) Recycle() {
hasPool := item.list != item.Pool && item.Pool != nil && item.Pool.Length < PoolSize
if item.reset || !hasPool {
var null T
item.Value = null
}
if hasPool {
item.Pool.Push(item)
} else {
item.Pool = nil
item.list = nil
item.Next = nil
item.Pre = nil
}
}
func (item *ListItem[T]) Range(do func(value T) bool) {
item.RangeItem(func(item *ListItem[T]) bool {
return do(item.Value)
})
}
func (item *ListItem[T]) RangeItem(do func(*ListItem[T]) bool) {
for ; item != nil && item.list != nil && !item.IsRoot() && do(item); item = item.Next {
}
}
type List[T any] struct {
ListItem[T]
Length int
}
func (p *List[T]) PushValue(value T) {
p.Push(&ListItem[T]{Value: value, reset: true})
}
func (p *List[T]) Push(item *ListItem[T]) {
if item.list != nil {
panic("item already in list")
}
if p.Length == 0 {
p.Next = &p.ListItem
p.Pre = &p.ListItem
p.ListItem.list = p
}
p.Pre.InsertAfter(item)
}
func (p *List[T]) UnshiftValue(value T) {
p.Unshift(&ListItem[T]{Value: value})
}
func (p *List[T]) Unshift(item *ListItem[T]) {
if item.list != nil {
panic("item already in list")
}
if p.Length == 0 {
p.Next = &p.ListItem
p.Pre = &p.ListItem
p.ListItem.list = p
}
p.Next.InsertBefore(item)
}
func (p *List[T]) ShiftValue() T {
return p.Shift().Value
}
func (p *List[T]) PoolShift() (head *ListItem[T]) {
if head = p.Shift(); head == nil {
head = &ListItem[T]{Pool: p}
}
return
}
func (p *List[T]) Shift() (head *ListItem[T]) {
if p.Length == 0 {
return
}
head = p.Next
p.Next = head.Next
head.Pre = nil
head.Next = nil
head.list = nil
p.Length--
return
}
func (p *List[T]) Clear() {
p.Next = &p.ListItem
p.Pre = &p.ListItem
p.Length = 0
}
func (p *List[T]) Range(do func(value T) bool) {
if p.Length > 0 {
p.Next.Range(do)
}
}
func (p *List[T]) RangeItem(do func(*ListItem[T]) bool) {
if p.Length > 0 {
p.Next.RangeItem(do)
}
}
func (p *List[T]) Recycle() {
for item := p.Shift(); item != nil; item = p.Shift() {
item.Recycle()
}
if p.Length != 0 {
panic("recycle list error")
}
}
// Transfer 把链表中的所有元素转移到另一个链表中
func (p *List[T]) Transfer(target IList[T]) {
for item := p.Shift(); item != nil; item = p.Shift() {
target.Push(item)
}
if p.Length != 0 {
panic("transfer list error")
}
}