-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathDoublyLinkedList.java
461 lines (451 loc) · 11.6 KB
/
DoublyLinkedList.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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
public class DoublyLinkedList
{
private DLLNode head;
private DLLNode tail;
private int length;
//constructor to set defaults
public DoublyLinkedList()
{
head=null;
tail=null;
length=0;
}
//METHODS
/******************************************************/
/*======================> LENGTH <====================*/
public int length()
{
return length;
}
/*
* INSERTION
* 1. AT HEAD
* 2. AT TAIL
* 3A. AT MIDDLE USING INDEX
* 3B. AT EXACT MIDDLE
*/
/*==================> INSERT AT HEAD <=================*/
public void insert_at_head(int value)
{
DLLNode newNode = new DLLNode(value);
if(head==null) //empty linked list
{
head=newNode;
tail=newNode;
}
else
{
newNode.setNext(head);
head.setPrev(newNode);
head=newNode;
}
length++;
}
/*====================> INSERT AT TAIL <================*/
public void insert_at_tail(int value)
{
DLLNode newNode = new DLLNode(value);
if(head==null)
{
head=newNode;
tail=newNode;
}
else
{
tail.setNext(newNode);
newNode.setPrev(tail);
tail=newNode;
}
length++;
}
/*============> INSERT AT MIDDLE USING INDEX <===========*/
public void insert_at_middle_using_index(int value,int position)
{
DLLNode newNode = new DLLNode(value);
//fixing length
if(position<0 || position>length)
{
System.out.println("INVALID POSITION");
return;
}
else if(head==null) //null to one
{
if(position==0)
{
head=newNode;
tail=newNode;
}
else
{
return;
}
}
else if(position==0) //at head
{
newNode.setNext(head);
head.setPrev(newNode);
head=newNode;
}
else if(position==length) //at tail
{
tail.setNext(newNode);
newNode.setPrev(tail);
tail=newNode;
}
else
{
int i=0;
DLLNode current=head;
DLLNode prev=head;
while(current.getNext()!=null)
{
if(position==i)
{
break;
}
prev=current;
current=current.getNext();
i++;
}
// System.out.println(prev.getData());
// System.out.println(current.getData());
prev.setNext(newNode);
newNode.setPrev(prev);
newNode.setNext(current);
current.setPrev(newNode);
}
length++;
}
/*===================> INSERT AT EXACT MIDDLE <==================*/
public void insert_at_exact_middle(int value)
{
int mid = length/2;
insert_at_middle_using_index(value, mid);
}
/*
* DELETION
* 1. FROM HEAD
* 2. FROM TAIL
* 3A. FROM MIDDLE USING INDEX
* 3B. FROM EXACT MIDDLE
* 3C. FROM MIDDLE USING VALUE
*/
/*======================> DELETE FROM HEAD <===================*/
public void delete_from_head()
{
if(head==null) //empty list
{
return;
}
else if(head.getNext()==null) //single node
{
head=null;
tail=null;
}
else
{
DLLNode temp = head;
head=head.getNext();
head.setPrev(null);
temp.setNext(null);
}
length--;
}
/*======================> DELETE FROM TAIL <===================*/
public void delete_from_tail()
{
if(head==null) //empty list
{
return;
}
else if(head.getNext()==null) //single node
{
head=null;
tail=null;
}
else
{
DLLNode temp = tail;
tail=tail.getPrev();
tail.setNext(null);
temp.setPrev(null);
}
length--;
}
/*=================> DELETE FROM MIDDLE USING INDEX <================*/
public void delete_from_middle_using_index(int position)
{
if(head==null) //empty list
{
return;
}
else if(position<0 || position>length-1) //checking position
{
System.out.println("INVALID INDEX");
return;
}
else if(head.getNext()==null) //single node
{
if(position==0) //make empty
{
head=null;
tail=null;
}
else
{
return;
}
}
else if(position==0) //delete from head
{
DLLNode temp=head;
head=head.getNext();
head.setPrev(null);
temp.setNext(null);
}
else if(position==length-1) //delete from tail
{
DLLNode temp = tail;
tail=tail.getPrev();
tail.setNext(null);
temp.setPrev(null);
}
else
{
DLLNode current=head;
DLLNode prev=head;
int i=0;
while(current.getNext()!=null)
{
if(i==position)
{
break;
}
prev=current;
current=current.getNext();
i++;
}
DLLNode temp = current.getNext();
prev.setNext(temp);
current.setPrev(null);
current.setNext(null);
temp.setPrev(prev);
}
length--;
}
/*=================> DELETE FROM EXACT MIDDLE <================*/
public void delete_from_exact_middle()
{
int mid=length/2;
delete_from_middle_using_index(mid);
}
/*=================> DELETE FROM MIDDLE USING VALUE <================*/
public void delete_from_middle_using_value(int value)
{
if(head==null) //empty list
{
return;
}
else if(head.getNext()==null) //single node
{
if(head.getData()==value)
{
head=null;
tail=null;
}
else
{
System.out.println("NOT FOUND");
return;
}
}
else if(head.getData()==value) //value present at head
{
DLLNode temp=head;
head=head.getNext();
head.setPrev(null);
temp.setNext(null);
}
else if(tail.getData()==value) //value present at tail
{
DLLNode temp=tail;
tail=tail.getPrev();
tail.setNext(null);
temp.setPrev(null);
}
else
{
DLLNode current=head;
DLLNode prev=head;
int flag=0;
while(current.getNext()!=null)
{
if(current.getData()==value)
{
flag=1;
break;
}
prev=current;
current=current.getNext();
}
if(flag==1)
{
DLLNode temp = current.getNext();
prev.setNext(temp);
current.setPrev(null);
current.setNext(null);
temp.setPrev(prev);
}
else
{
System.out.println("NOT FOUND");
return;
}
}
length--;
}
/************************************************/
/*=================> CLEAR LIST <===============*/
public void clear_list()
{
head=null;
tail=null;
length=0;
}
/*************************************************************/
/*=================> TO STRING FOR PRINTING <================*/
public String toString()
{
if(length==0)
{
return "[]";
}
String result="[";
DLLNode current=head;
while(current!=null)
{
if(current.getNext()==null)
{
result=result+current.toString()+"]";
}
else
{
result=result+current.toString()+",";
}
current=current.getNext();
}
return result;
}
/*
* TRAVERSING A LIST
* 1. FROM LEFT TO RIGHT
* 2. FROL RIGHT TO LEFT
*/
/*===============> PRINT LIST FROM LEFT <================*/
public void print_list_from_left()
{
if(head==null)
{
System.out.println("null");
}
else
{
DLLNode current=head;
System.out.print("null <- ");
while(current!=null)
{
if(current.getNext()==null)
{
System.out.println(current.getData() + " -> null");
}
else
{
System.out.print(current.getData() + " <=> ");
}
current=current.getNext();
}
}
}
/*===============> PRINT LIST FROM RIGHT <================*/
public void print_list_from_right()
{
if(head==null)
{
System.out.println("null");
}
else
{
DLLNode current=tail;
System.out.print("null <- ");
while(current!=null)
{
if(current.getPrev()==null)
{
System.out.println(current.getData() + " -> null");
}
else
{
System.out.print(current.getData() + " <=> ");
}
current=current.getPrev();
}
}
}
/*
* SEARCHING
* 1. SEARCH LIST USING LINEAR SEARCH
* 2. OPTIMAL SEARCH BY TRAVERSING FROM BOTH SIDES
*/
/*====================> SEARCH LIST <======================*/
public boolean search_list(int value)
{
//linear search
if(head==null)
{
return false;
}
else
{
DLLNode current=head;
while(current!=null)
{
if(current.getData()==value)
{
return true;
}
current=current.getNext();
}
return false;
}
}
/*====================> OPTIMAL SEARCH <======================*/
public boolean optimal_search(int value)
{
if(head==null)
{
return false;
}
else
{
//traversing from both sides
DLLNode current1 = head;
DLLNode current2 = tail;
while(true)
{
// System.out.println(current1.getData());
// System.out.println(current2.getData());
if(current1.getData()==value || current2.getData()==value)
{
return true;
}
else if(current1.getData()==current2.getData() || current1.getData()==current2.getPrev().getData())
{
break;
}
current1=current1.getNext();
current2=current2.getPrev();
}
return false;
}
}
}