1 /*
2 Copyright (c) 2015 Timur Gafarov
3 4 Boost Software License - Version 1.0 - August 17th, 2003
5 6 Permission is hereby granted, free of charge, to any person or organization
7 obtaining a copy of the software and accompanying documentation covered by
8 this license (the "Software") to use, reproduce, display, distribute,
9 execute, and transmit the Software, and to prepare derivative works of the
10 Software, and to permit third-parties to whom the Software is furnished to
11 do so, all subject to the following:
12 13 The copyright notices in the Software and this entire statement, including
14 the above license grant, this restriction and the following disclaimer,
15 must be included in all copies of the Software, in whole or in part, and
16 all derivative works of the Software, unless such copies or derivative
17 works are solely in the form of machine-executable object code generated by
18 a source language processor.
19 20 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
23 SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
24 FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
25 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
26 DEALINGS IN THE SOFTWARE.
27 */28 29 moduledgl.util.linkedlist;
30 31 importdlib.core.memory;
32 33 public:
34 35 structLinkedListElement(T)
36 {
37 LinkedListElement!(T)* next = null;
38 Tdatum;
39 40 this(LinkedListElement!(T)* n)
41 {
42 next = n;
43 datum = T.init;
44 }
45 }
46 47 structLinkedList(T, boolordered = true)
48 {
49 LinkedListElement!(T)* head = null;
50 LinkedListElement!(T)* tail = null;
51 size_tlength = 0;
52 53 @propertyboolempty()
54 {
55 returnlength == 0;
56 }
57 58 voidclear()
59 {
60 LinkedListElement!(T)* element = head;
61 while (element !isnull)
62 {
63 autoe = element;
64 element = element.next;
65 Delete(e);
66 }
67 head = null;
68 tail = null;
69 length = 0;
70 }
71 72 voidtraverse(voiddelegate(refTv, LinkedListElement!(T)* elem) func)
73 {
74 LinkedListElement!(T)* element = head;
75 while (element !isnull)
76 {
77 func(element.datum, element);
78 element = element.next;
79 }
80 }
81 82 intopApply(intdelegate(uint, refT) dg)
83 {
84 intresult = 0;
85 uintindex = 0;
86 87 LinkedListElement!(T)* element = head;
88 while (element !isnull)
89 {
90 result = dg(index, element.datum);
91 if (result)
92 break;
93 element = element.next;
94 index++;
95 }
96 97 returnresult;
98 }
99 100 LinkedListElement!(T)* append(Tv)
101 {
102 length++;
103 104 if (tailisnull)
105 {
106 tail = New!(LinkedListElement!(T))(null);
107 tail.datum = v;
108 }
109 else110 {
111 tail.next = New!(LinkedListElement!(T))(null);
112 tail.next.datum = v;
113 tail = tail.next;
114 }
115 116 if (headisnull) head = tail;
117 118 returntail;
119 }
120 121 LinkedListElement!(T)* insertAfter(LinkedListElement!(T)* element, Tv)
122 {
123 length++;
124 autonewElement = New!(LinkedListElement!(T))(null);
125 newElement.datum = v;
126 newElement.next = element.next;
127 element.next = newElement;
128 if (elementistail) tail = newElement;
129 returnnewElement;
130 }
131 132 LinkedListElement!(T)* insertBeginning(Tv)
133 {
134 length++;
135 autonewElement = New!(LinkedListElement!(T))(null);
136 newElement.datum = v;
137 newElement.next = head;
138 head = newElement;
139 returnnewElement;
140 }
141 142 voidremoveAfter(LinkedListElement!(T)* element)
143 {
144 length--;
145 autoobsolete = element.next;
146 if (obsolete !isnull)
147 {
148 if (obsoleteistail) tail = element;
149 element.next = obsolete.next;
150 Delete(obsolete);
151 }
152 }
153 154 voidremoveBeginning()
155 {
156 length--;
157 autoobsolete = head;
158 if (obsolete !isnull)
159 {
160 head = obsolete.next;
161 Delete(obsolete);
162 }
163 }
164 165 voidappendList(LinkedList!(T) list)
166 {
167 length += list.length;
168 tail.next = list.head;
169 tail = list.tail;
170 }
171 172 LinkedListElement!(T)* search(Tv)
173 {
174 LinkedListElement!(T)* element = head;
175 LinkedListElement!(T)* prevElement = head;
176 while (element !isnull)
177 {
178 if (element.datum == v)
179 {
180 staticif (!ordered)
181 {
182 /*
183 * Move-to-front heuristic:
184 * Move an element to the beginning of the list once it is found.
185 * This scheme ensures that the most recently used items are also
186 * the quickest to find again.
187 */188 prevElement.next = element.next;
189 element.next = head;
190 head = element;
191 }
192 193 returnelement;
194 }
195 196 prevElement = element;
197 element = element.next;
198 }
199 200 returnnull;
201 }
202 203 T[] toArray()
204 {
205 T[] arr = New!(T[])(length);
206 foreach(i, v; this)
207 arr[i] = v;
208 returnarr;
209 }
210 }
211