-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path19-DLL Deletion.js
More file actions
129 lines (98 loc) · 1.92 KB
/
19-DLL Deletion.js
File metadata and controls
129 lines (98 loc) · 1.92 KB
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
class Node {
constructor(data) {
this.data = data;
this.prev = null;
this.next = null;
}
}
class DoublyLinkedList {
constructor() {
this.head = null;
}
insertAtEnd(data) {
const newNode = new Node(data);
if (!this.head) {
this.head = newNode;
return;
}
let current = this.head;
while (current.next) {
current = current.next;
}
current.next = newNode;
newNode.prev = current;
}
deleteFromStart() {
if (!this.head) return;
let temp = this.head;
this.head = this.head.next;
if (this.head) {
this.head.prev = null;
}
temp = null;
}
deleteFromEnd() {
if (!this.head) {
return;
}
let temp = this.head;
while (temp.next) {
temp = temp.next;
}
if (temp.prev) {
temp.prev.next = null;
} else {
this.head = null;
}
temp = null;
}
deleteFromPosition(index) {
if (!this.head) {
return;
}
if (index === 0) {
this.deleteFromStart();
return;
}
let temp = this.head;
let count = 0;
while (temp && count < index) {
temp = temp.next;
count++;
}
if (!temp) {
return;
}
if (temp.prev) {
temp.prev.next = temp.next;
}
if (temp.next) {
temp.next.prev = temp.prev;
}
}
printList() {
let current = this.head;
let result = "null ← ";
while (current) {
result += current.data + " ↔ ";
current = current.next;
}
result += "null";
console.log(result);
}
}
const list = new DoublyLinkedList();
list.insertAtEnd(10);
list.insertAtEnd(20);
list.insertAtEnd(30);
list.insertAtEnd(40);
list.insertAtEnd(50);
list.insertAtEnd(60);
list.insertAtEnd(70);
list.printList(); // null ← 10 ↔ 20 ↔ 30 ↔ null`
list.deleteFromStart();
list.printList();
list.deleteFromEnd();
list.printList();
list.deleteFromPosition(2);
list.printList();