-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
LinkedList.d
324 lines (257 loc) · 6.13 KB
/
LinkedList.d
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
module Library.LinkedList;
public class LinkedList(T) {
private LinkedListNode!T _head;
private long _count;
private long _version;
@property public long Count() {
return _count;
}
@property public LinkedListNode!T First() {
return _head;
}
@property public LinkedListNode!T Last() {
return _head is null ? null : _head._prev;
}
public this() {
}
public ~this() {
Clear();
}
public LinkedListNode!T Add(T value) {
return AddLast(value);
}
public LinkedListNode!T AddAfter(LinkedListNode!T node, T value) {
ValidateNode(node);
LinkedListNode!T result = new LinkedListNode!T(node._list, value);
InternalInsertNodeBefore(node._next, result);
return result;
}
public void AddAfter(LinkedListNode!T node, LinkedListNode!T newNode) {
ValidateNode(node);
ValidateNewNode(newNode);
InternalInsertNodeBefore(node._next, newNode);
newNode._list = this;
}
public LinkedListNode!T AddBefore(LinkedListNode!T node, T value) {
ValidateNode(node);
LinkedListNode!T result = new LinkedListNode!T(node._list, value);
InternalInsertNodeBefore(node, result);
if (node is _head)
_head = result;
return result;
}
public void AddBefore(LinkedListNode!T node, LinkedListNode!T newNode) {
ValidateNode(node);
ValidateNewNode(newNode);
InternalInsertNodeBefore(node, newNode);
newNode._list = this;
if (node is _head)
_head = newNode;
}
public LinkedListNode!T AddFirst(T value) {
LinkedListNode!T result = new LinkedListNode!T(this, value);
if (_head is null)
InternalInsertNodeToEmptyList(result);
else {
InternalInsertNodeBefore(_head, result);
_head = result;
}
return result;
}
public void AddFirst(LinkedListNode!T node) {
ValidateNewNode(node);
if (_head is null)
InternalInsertNodeToEmptyList(node);
else {
InternalInsertNodeBefore(_head, node);
_head = node;
}
node._list = this;
}
public LinkedListNode!T AddLast(T value) {
LinkedListNode!T result = new LinkedListNode!T(this, value);
if (_head is null)
InternalInsertNodeToEmptyList(result);
else
InternalInsertNodeBefore(_head, result);
return result;
}
public void AddLast(LinkedListNode!T node) {
ValidateNewNode(node);
if (_head is null)
InternalInsertNodeToEmptyList(node);
else
InternalInsertNodeBefore(_head, node);
node._list = this;
}
public void Clear() {
auto current = _head;
while (current !is null) {
auto tmp = current;
current = current.Next;
tmp.Invalidate();
delete tmp;
}
_head = null;
_count = 0;
_version++;
}
public bool Contains(T value) {
return Find(value) !is null;
}
public LinkedListNode!T Find(T value) {
LinkedListNode!T node = _head;
if (node) {
if (value) {
do {
if (value is node._item)
return node;
node = node._next;
} while (node !is _head);
} else {
do {
if (!node._item)
return node;
node = node._next;
} while (node !is _head);
}
}
return null;
}
public LinkedListNode!T FindLast(T value) {
if (_head is null)
return null;
LinkedListNode!T last = _head._prev;
LinkedListNode!T node = last;
if (node) {
if (value) {
do {
if (value is node._item)
return node;
node = node._prev;
} while (node !is last);
} else {
do {
if (!node._item)
return node;
node = node._prev;
} while (node !is last);
}
}
return null;
}
public bool Remove(T value) {
LinkedListNode!T node = Find(value);
if (node) {
InternalRemoveNode(node);
return true;
}
return false;
}
public void Remove(LinkedListNode!T node) {
ValidateNode(node);
InternalRemoveNode(node);
}
public void RemoveFirst() in {
if (_head is null)
assert(0);
} body {
InternalRemoveNode(_head);
}
public void RemoveLast() in {
if (_head is null)
assert(0);
} body {
InternalRemoveNode(_head._prev);
}
public int opApply(int delegate(ref LinkedListNode!T) dg) {
int result;
for (auto x = _head; x !is null; x = x.Next) {
result = dg(x);
if (result)
break;
}
return result;
}
public int opApplyReverse(int delegate(ref LinkedListNode!T) dg) {
int result;
for (auto x = _head; x !is null; x = x.Prev) {
result = dg(x);
if (result)
break;
}
return result;
}
private void InternalInsertNodeBefore(LinkedListNode!T node, LinkedListNode!T newNode) {
newNode._next = node;
newNode._prev = node._prev;
node._prev._next = newNode;
node._prev = newNode;
_version++;
_count++;
}
private void InternalInsertNodeToEmptyList(LinkedListNode!T newNode) in {
assert(_head is null && !_count, "LinkedList must be empty when this method is called!");
} body {
newNode._next = newNode;
newNode._prev = newNode;
_head = newNode;
_version++;
_count++;
}
private void InternalRemoveNode(LinkedListNode!T node) in {
assert(node._list is this, "Deleting the node from another list!");
assert(_head !is null, "This method shouldn't be called on empty list!");
} body {
if (node._next == node) {
_head = null;
} else {
node._next._prev = node._prev;
node._prev._next = node._next;
if (_head is node)
_head = node._next;
}
node.Invalidate();
delete node;
_count--;
_version++;
}
private void ValidateNewNode(LinkedListNode!T node) {
if (node is null || node._list !is null)
assert(false);
}
private void ValidateNode(LinkedListNode!T node) {
if (node is null || node._list !is this)
assert(false);
}
}
public final class LinkedListNode(T) {
private LinkedList!T _list;
private LinkedListNode!T _next;
private LinkedListNode!T _prev;
private T _item;
public this(T value) {
_item = value;
}
private this(LinkedList!T list, T value) {
_list = list;
_item = value;
}
@property public LinkedList!T List() {
return _list;
}
@property public LinkedListNode!T Next() {
return _next is null || _next is _list._head ? null : _next;
}
@property public LinkedListNode!T Prev() {
return _prev is null || _prev is _list._head ? null : _prev;
}
@property public ref T Value() {
return _item;
}
private void Invalidate() {
_list = null;
_next = null;
_prev = null;
}
}