-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWithTail.js
125 lines (116 loc) · 2.67 KB
/
WithTail.js
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
class Node {
constructor(value) {
this.value = value;
this.next = null;
}
}
class LinkedList {
constructor() {
this.head = null;
this.tail = null;
this.size = 0;
}
isEmpty() {
return this.size === 0;
}
getSize() {
return this.size;
}
prepend(value) {
const newNode = new Node(value);
if (this.isEmpty()) {
this.head = newNode;
this.tail = newNode;
} else {
newNode.next = this.head;
this.head = newNode;
}
this.size++;
}
append(value) {
const newNode = new Node(value);
if (this.isEmpty()) {
this.head = newNode;
this.tail = newNode;
} else {
this.tail.next = newNode;
this.tail = newNode;
}
this.size++;
}
insert(value, index) {
if (index < 0 || index > this.size) {
return;
}
if (index === 0) {
this.prepend(value);
} else if (index === this.size) {
this.append(value);
} else {
const newNode = new Node(value);
let current = this.head;
for (let i = 0; i < index - 1; i++) {
current = current.next;
}
newNode.next = current.next;
current.next = newNode;
this.size++;
}
}
search(value) {
if (this.isEmpty()) {
return -1;
}
let current = this.head;
let index = 0;
while (current) {
if (current.value === value) {
return index;
}
current = current.next;
index++;
}
return -1;
}
removeByValue(value) {
if (this.isEmpty()) {
return null;
}
if (this.head.value === value) {
const removedValue = this.head.value;
this.head = this.head.next;
this.size--;
if (this.isEmpty()) {
this.tail = null;
}
return removedValue;
}
let current = this.head;
while (current.next && current.next.value !== value) {
current = current.next;
}
if (current.next) {
const removedValue = current.next.value;
current.next = current.next.next;
this.size--;
if (current.next === null) {
this.tail = current;
}
return removedValue;
}
return null;
}
print() {
if (this.isEmpty()) {
console.log('List is empty');
} else {
let current = this.head;
let values = [];
while (current) {
values.push(current.value);
current = current.next;
}
console.log('List values:', values.join(' -> '));
}
}
}