-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path20-DLL TRAVERSAL & SEARCHING.js
More file actions
96 lines (73 loc) · 1.52 KB
/
Copy path20-DLL TRAVERSAL & SEARCHING.js
File metadata and controls
96 lines (73 loc) · 1.52 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
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;
}
traverse() {
let current = this.head;
let result = "";
while (current) {
result += current.data + " <-> ";
current = current.next;
}
console.log(result);
}
reverseTraversal() {
if (!this.head) {
return;
}
let current = this.head;
while (current.next) {
current = current.next;
}
let result = "";
while (current) {
result += current.data + " <-> ";
current = current.prev;
}
console.log(result);
}
search(value) {
let current = this.head;
let position = 1;
while (current) {
if (current.data === value) {
console.log(`Value ${value} found at postion ${position}`);
return;
}
current = current.next;
position++;
}
console.log(`Value ${value} not found in the list`);
}
}
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.traverse();
list.reverseTraversal();
list.search(90);