-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathList.java
393 lines (346 loc) · 9.54 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
class List {
private class Node {
// Fields
int data;
Node next;
Node previous;
// Constructor
Node(int data) {
this.data = data;
next = null;
previous = null;
}
// toString(): overrides Object's toString() method
public String toString() {
return String.valueOf(data);
}
// equals(): overrides Object's equals() method
public boolean equals(Object x){
boolean eq = false;
Node that;
if(x instanceof Node){
that = (Node) x;
eq = (this.data==that.data);
}
return eq;
}
}
// Fields
private Node front;
private Node back;
private Node cursor;
private int index;
private int length;
// Constructor
List() {
front = back = cursor = null;
length = 0;
index = -1;
}
// Access Functions --------------------------------------------------------
// isEmpty()
// Returns true if this List is empty, false otherwise.
boolean isEmpty() {
return length == 0;
}
// length()
// Returns length of this List.
int length() {
return length;
}
// index()
// Returns the index of cursor element
int index() {
if(cursor != null) {
return index;
} else {
return -1;
}
}
// front()
// Returns front element.
// Pre: length() > 0
int front(){
if(this.isEmpty() ){
throw new RuntimeException(
"List Error: front() called on empty List");
}
return front.data;
}
// back()
// Returns back element.
// Pre: length() > 0
int back(){
if(this.isEmpty() ){
throw new RuntimeException(
"List Error: back() called on empty List");
}
return back.data;
}
// int get()
// Returns cursor element. Pre: length()>0, index()>=0
int get() {
if(this.isEmpty() ){
throw new RuntimeException(
"List Error: get() called on empty List");
}
if(cursor == null){
throw new RuntimeException(
"List Error: get() called on undefined cursor");
}
return cursor.data;
}
//boolean equals(List L)
// Returns true if and only if this List and L are the same
// integer sequence. The states of the cursors in the two Lists
// are not used in determining equality.
boolean equals(List L) {
boolean eq = false;
Node temp = this.front;
Node hold = L.front;
int i;
if (this.length == L.length()) {
eq = true;
i = this.length;
while (eq == true && i > 0) {
eq = temp.equals(hold);
temp = temp.next;
hold = hold.next;
i--;
}
}
return eq;
}
// Manipulation Procedures -------------------------------------------------
// void clear()
// Resets this List to its original empty state.
void clear() {
this.front = this.back = this.cursor = null;
this.length = 0;
this.index = -1;
}
//void moveFront()
// If List is non-empty, places the cursor under the front element,
// otherwise does nothing.
void moveFront() {
if (this.isEmpty() == false) {
if (cursor == null) {
cursor = new Node(front.data);
cursor.next = front.next;
index = 0;
} else {
cursor = front;
index = 0;
}
}
}
//void moveBack()
// If List is non-empty, places the cursor under the back element,
// otherwise does nothing.
void moveBack() {
if (this.isEmpty() == false) {
if (cursor == null) {
cursor = new Node(this.back());
cursor.previous = back.previous;
index = (length - 1);
} else {
cursor = back;
cursor.previous = back.previous;
index = (length - 1);
}
}
}
//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 become
// undefined, if cursor is undefined does nothing.
void movePrev() {
if (cursor != null && index > 0) {
cursor = cursor.previous;
index--;
}
if (cursor != null && index == 0) {
cursor = null;
index= -1;
}
}
//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 become
// undefined, if cursor is undefined does nothing.
void moveNext() {
if (cursor != null && index != (length - 1)) {
cursor = cursor.next;
index++;
} else if (index == (length - 1)) {
cursor = null;
index = -1;
}
}
//void prepend(int data)
// Insert new element into this List. If List is non-empty,
// insertion takes place before front element.
void prepend(int data) {
Node N = new Node(data);
if (this.isEmpty()) {
front = back = N;
} else {
front.previous = N;
N.next = front;
front = N;
}
length++;
}
//void append(int data)
// Insert new element into this List. If List is non-empty,
// insertion takes place after back element.
void append(int data){
Node N = new Node(data);
if ( this.isEmpty() ) {
front = back = N;
} else {
back.next = N;
N.previous = back;
back = N;
}
length++;
}
//void insertBefore(int data)
// Insert new element before cursor.
// Pre: length()>0, index()>=0
void insertBefore(int data) {
if(this.isEmpty()) {
throw new RuntimeException(
"List Error: insertBefore() called on empty List");
}
if(cursor == null) {
throw new RuntimeException(
"List Error: inserBefore() called on undefined cursor");
}
if (cursor.previous == null) {
this.prepend(data);
} else {
Node N = new Node(data);
N.previous = cursor.previous;
cursor.previous.next = N;
cursor.previous = N;
N.next = cursor;
length++;
}
}
//void insertAfter(int data)
// Inserts new element after cursor.
// Pre: length()>0, index()>=0
void insertAfter(int data) {
if(this.isEmpty()) {
throw new RuntimeException(
"List Error: insertBefore() called on empty List");
}
if(cursor == null) {
throw new RuntimeException(
"List Error: inserBefore() called on undefined cursor");
}
if (cursor.next == null) {
this.append(data);
} else {
Node N = new Node(data);
N.next = cursor.next;
cursor.next.previous = N;
N.previous = cursor;
cursor.next = N;
}
length++;
}
//void deleteFront()
// Deletes the front element. Pre: length()>0
void deleteFront(){
if (this.isEmpty()) {
throw new RuntimeException(
"List Error: deleteFront() called on empty List");
}
if (this.length>1) {
if (cursor != null && front.next.equals(cursor.next)){
cursor = null;
index = -1;
}
front = front.next;
front.previous = null;
}else{
front = back = cursor = null;
index = -1;
}
length--;
}
//void deleteBack()
// Deletes the front element. Pre: length()>0
void deleteBack(){
if (this.isEmpty()) {
throw new RuntimeException(
"List Error: deleteBack() called on empty List");
}
if (this.length>1) {
if (cursor != null && back.previous.equals(cursor.previous)){
cursor = null;
index = -1;
}
back = back.previous;
back.next = null;
}else{
front = back = cursor = null;
index = -1;
}
length--;
}
//void delete()
// Deletes cursor element, making cursor undefined.
// Pre: length()>0, index()>=0
void delete() {
if (this.isEmpty()) {
throw new RuntimeException(
"List Error: deleteBack() called on empty List");
}
if (cursor == null) {
throw new RuntimeException(
"List Error: delete() called on undefined cursor");
}
if (cursor.next == null) {
this.deleteBack();
} else if (cursor.previous == null) {
this.deleteFront();
} else {
cursor.next.previous = cursor.previous;
cursor.previous.next = cursor.next;
cursor = null;
index = -1;
length--;
}
}
// Other Methods ---------------------------------------------------------
//public String toString()
// Overrides Object's toString method. Returns a String
// representation of this List consisting of a space
// separated sequence of integers, with front on left.
public String toString(){
StringBuffer sb = new StringBuffer();
Node N = front;
while(N!=null){
sb.append(" ");
sb.append(N.toString());
N = N.next;
}
return new String(sb);
}
//List copy()
// Returns a new List representing the same integer sequence as this
// List. The cursor in the new list is undefined, regardless of the
// state of the cursor in this List. This List is unchanged.
List copy(){
List Q = new List();
Node N = this.front;
while( N!=null ){
Q.append(N.data);
N = N.next;
}
return Q;
}
}