-
Notifications
You must be signed in to change notification settings - Fork 0
/
List.java
418 lines (374 loc) · 6.85 KB
/
List.java
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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
/*
* Name : Andrew Hartwell
* cruzID : arhartwe
* Assignment : pa3
*/
public class List
{
private Node front;
private Node back;
private Node cursor;
private Node temp;
private int length = length();
List()
{
this.front = null;
this.back = null;
this.cursor = null;
this.temp = null;
}
private class Node
{
private Object data;
private Node next;
private Node prev;
Node(Object data)
{
this.data = data;
}
}
int length() // Returns the number of elements in this List
{
int i = 0;
temp = front;
while(temp != null)
{
i++;
temp = temp.next;
}
length = i;
if(length == 0)
{
return 0;
}
return length;
}
int index() // If cursor is defined, returns the index of the cursor element,
// otherwise returns -1;
{
int index = 0;
if(cursor != null)
{
temp = front;
while(temp != cursor)
{
index++;
temp = temp.next;
}
return index;
}
return -1;
}
Object front() // Returns front element. Pre: length()>0
{
if(length() > 0)
{
return front.data;
}
else
{
System.err.println("Front Does Not Exist");
System.exit(1);
return -1;
}
}
Object back() // Returns back element. Pre: length()>0
{
if(length() > 0)
{
return back.data;
}
else
{
System.err.println("Back Does Not Exist");
System.exit(1);
return -1;
}
}
Object get() // Returns cursor element. Pre: length > 0
{
if(length() > 0)
{
return cursor.data;
}
else
{
System.err.println("Cursor Does Not Exist");
System.exit(1);
return -1;
}
}
public boolean equals(List L) // Returns true if and only if this List and L are the same object
// sequence. The states of the cursors in the two Lists are not used
// in determining equality.
{
temp = front;
Node compTemp = L.front;
while(temp != null && compTemp != null)
{
if(temp.data != compTemp.data)
{
return false;
}
temp = temp.next;
compTemp = compTemp.next;
}
return (temp == null && compTemp == null);
}
void clear() // Resets this List to its original empty state
{
if(length() == 0)
{
front = null;
back = null;
length = 0;
}
else
{
while(front.next != null)
{
deleteFront();
}
front = null;
}
}
void moveFront() // If List is non-empty, places the cursor under the front element,
// otherwise does nothing.
{
if(length() > 0)
{
cursor = front;
}
}
void moveBack() // If List is non-empty, places the cursor under the back element,
// otherwise does nothing.
{
if(length() > 0)
{
cursor = back;
}
}
void movePrev() // If cursor is defined and not at front, moves cursor one step toward
// front of this List, if cursor is defined and at front, cursor becomes
// undefined, if cursor is undefined, does nothing.
{
if(cursor != null && cursor != front)
{
cursor = cursor.prev;
}
else if(cursor != null && cursor == front)
{
cursor = null;
}
else
{
return;
}
}
void moveNext() // If cursor is defined and not at back, moves cursor one step toward
// back of this List, if cursor is defined and at back, cursor becomes
// undefined, if cursor is undefined does nothing.
{
if(cursor != null && cursor != back)
{
cursor = cursor.next;
}
else if(cursor != null && cursor == back)
{
cursor = null;
}
else
{
return;
}
}
void prepend(Object data) // Insert new element into this List. If List is non-empty,
// insertion takes place before front element.
{
Node node = new Node(data);
if(back == null)
{
back = node;
back.prev = null;
back.next = null;
}
else
{
temp = back;
while(temp.prev != null)
{
temp = temp.prev;
}
temp.prev = node;
node.next = temp;
node.prev = null;
}
front = node;
}
void append(Object data) // Insert new element into this List. if List is non-empty,
// insertion takes place after back element;
{
Node node = new Node(data);
if(front == null)
{
front = node;
front.prev = null;
front.next = null;
}
else
{
temp = front;
while(temp.next != null)
{
temp = temp.next;
}
temp.next = node;
node.prev = temp;
node.next = null;
}
back = node;
}
void insertBefore(Object data) // Insert new element before cursor.
// Pre: length() > 0, index() >= 0
{
Node node = new Node(data);
if(cursor.prev == null)
{
front = node;
cursor.prev = node;
node.prev = null;
node.next = cursor;
}
else
{
cursor.prev.next = node;
node.prev = cursor.prev;
node.next = cursor;
cursor.prev = node;
}
}
void insertAfter(Object data) // Inserts new element after cursor.
// Pre: length()> 0, index() >= 0
{
Node node = new Node(data);
if(cursor.next == null)
{
back = node;
cursor.next = node;
node.next = null;
node.prev = cursor;
}
else
{
cursor.next.prev = node;
node.next = cursor.next;
node.prev = cursor;
cursor.next = node;
}
}
void deleteFront() // Deletes the front element. Pre: length()>0
{
if(length() > 0)
{
if(cursor == front)
{
cursor = null;
}
if(length() > 2)
{
front = front.next;
front.prev = null;
}
else if(length() == 2)
{
front = front.next;
front.prev = null;
front.next = null;
}
else
{
front = null;
back = null;
}
}
}
void deleteBack() // Deletes the back element. Pre: length()>0
{
if(length() > 0)
{
if(cursor == back)
{
cursor = null;
}
if(length() > 2)
{
back = back.prev;
back.next = null;
}
else if(length() == 2)
{
back = back.prev;
back.prev = null;
back.next = null;
}
else
{
front = null;
back = null;
}
}
}
void delete() // Deletes cursor element, making cursor undefined.
// Pre: length() > 0, index >= 0
{
if(length()> 0 && index() >= 0)
{
if(length() == 1)
{
clear();
}
else if(cursor == front)
{
front = cursor.next;
cursor = null;
}
else if(cursor == back)
{
back = cursor.prev;
back.next = null;
cursor = null;
}
else
{
cursor.prev.next = cursor.next;
cursor.next.prev = cursor.prev;
cursor = null;
}
}
}
public String toString()
{
if(front == null)
{
return "";
}
else
{
String printList = front.data + " ";
Node cursor = front;
while(cursor.next != null)
{
cursor = cursor.next;
if(cursor.next == null)
{
printList += cursor.data;
}
else
{
printList += cursor.data + " ";
}
}
return printList;
}
}
}