forked from Wizcorp/AudioManager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOrderedList.js
executable file
·301 lines (253 loc) · 6.32 KB
/
OrderedList.js
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
/**
* PRIORITY LIST Class
*
* @author Brice Chevalier
*
* @param {function} comparison function that takes two parameters a and b and returns a number
*
* @desc Priority list data structure, elements remain sorted
*
* Method Time Complexity
* ___________________________________
*
* add O(n), O(1) if insertion at the beginning or at the end of the list
* remove O(1)
* getFirst O(1)
* getLast O(1)
* popFirst O(1)
* popLast O(1)
* getCount O(1)
* forEach O(n * P) where P is the complexity of the input function
* forEachReverse O(n * P) where P is the complexity of the input function
* clear O(n) indirectly because of garbage collection
*
* Memory Complexity in O(n)
*/
function Node(obj, previous, next, container) {
this.object = obj;
this.previous = previous;
this.next = next;
this.container = container;
}
function OrderedList(comparisonFunction) {
this.count = 0;
this.first = null;
this.last = null;
this.cmpFunc = comparisonFunction;
}
OrderedList.prototype.add = function (obj) {
var newNode = new Node(obj, null, null, this);
this.count += 1;
if (this.first === null) {
this.first = newNode;
this.last = newNode;
return newNode;
}
var cmpFirst = this.cmpFunc(obj, this.first.object);
if (cmpFirst < 0) {
// insertion at the beginning of the list
newNode.next = this.first;
this.first.previous = newNode;
this.first = newNode;
return newNode;
}
var cmpLast = this.cmpFunc(obj, this.last.object);
if (cmpLast >= 0) {
// insertion at the end
newNode.previous = this.last;
this.last.next = newNode;
this.last = newNode;
return newNode;
}
var current;
if (cmpFirst + cmpLast < 0) {
current = this.first.next;
while (this.cmpFunc(obj, current.object) >= 0) {
current = current.next;
}
// insertion before current
newNode.next = current;
newNode.previous = current.previous;
newNode.previous.next = newNode;
current.previous = newNode;
} else {
current = this.last.previous;
while (this.cmpFunc(obj, current.object) < 0) {
current = current.previous;
}
// insertion after current
newNode.previous = current;
newNode.next = current.next;
newNode.next.previous = newNode;
current.next = newNode;
}
return newNode;
};
OrderedList.prototype.removeByRef = function (node) {
if (!node || node.container !== this) {
return false;
}
this.count -= 1;
// Removing any reference to the node
if (node.previous === null) {
this.first = node.next;
} else {
node.previous.next = node.next;
}
if (node.next === null) {
this.last = node.previous;
} else {
node.next.previous = node.previous;
}
// Removing any reference from the node to any other element of the list
node.previous = null;
node.next = null;
node.container = null;
return true;
};
OrderedList.prototype.moveToTheBeginning = function (node) {
if (!node || node.container !== this) {
return false;
}
if (node.previous === null) {
// node is already the first one
return true;
}
// Connecting previous node to next node
node.previous.next = node.next;
if (this.last === node) {
this.last = node.previous;
} else {
// Connecting next node to previous node
node.next.previous = node.previous;
}
// Adding at the beginning
node.previous = null;
node.next = this.first;
node.next.previous = node;
this.first = node;
return true;
};
OrderedList.prototype.moveToTheEnd = function (node) {
if (!node || node.container !== this) {
return false;
}
if (node.next === null) {
// node is already the last one
return true;
}
// Connecting next node to previous node
node.next.previous = node.previous;
if (this.first === node) {
this.first = node.next;
} else {
// Connecting previous node to next node
node.previous.next = node.next;
}
// Adding at the end
node.next = null;
node.previous = this.last;
node.previous.next = node;
this.last = node;
return true;
};
OrderedList.prototype.possess = function (node) {
return node && (node.container === this);
};
OrderedList.prototype.popFirst = function () {
var node = this.first;
if (!node) {
return null;
}
this.count -= 1;
var pop = node.object;
this.first = node.next;
if (this.first !== null) {
this.first.previous = null;
}
node.next = null;
node.container = null;
return pop;
};
OrderedList.prototype.popLast = function () {
var node = this.last;
if (!node) {
return null;
}
this.count -= 1;
var pop = node.object;
this.last = node.previous;
if (this.last !== null) {
this.last.next = null;
}
node.previous = null;
node.container = null;
return pop;
};
OrderedList.prototype.getFirst = function () {
return this.first && this.first.object;
};
OrderedList.prototype.getLast = function () {
return this.last && this.last.object;
};
OrderedList.prototype.clear = function () {
for (var current = this.first; current; current = current.next) {
current.container = null;
}
this.count = 0;
this.first = null;
this.last = null;
};
OrderedList.prototype.getCount = function () {
return this.count;
};
OrderedList.prototype.forEach = function (processingFunc, params) {
for (var current = this.first; current; current = current.next) {
processingFunc(current.object, params);
}
};
OrderedList.prototype.forEachReverse = function (processingFunc, params) {
for (var current = this.last; current; current = current.previous) {
processingFunc(current.object, params);
}
};
OrderedList.prototype.reposition = function (node) {
if (node.container !== this) {
return this.add(node.object);
}
var prev = node.previous;
var next = node.next;
var obj = node.object;
if (next === null) {
this.last = prev;
} else {
next.previous = prev;
}
if (prev === null) {
this.first = next;
} else {
prev.next = next;
}
while (prev !== null && this.cmpFunc(obj, prev.object) < 0) {
next = prev;
prev = prev.previous;
}
while (next !== null && this.cmpFunc(obj, next.object) >= 0) {
prev = next;
next = next.next;
}
node.next = next;
if (next === null) {
this.last = node;
} else {
next.previous = node;
}
node.previous = prev;
if (prev === null) {
this.first = node;
} else {
prev.next = node;
}
return node;
};
module.exports = OrderedList;