forked from nas5w/javascript-patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinkedList.js
123 lines (97 loc) · 2.07 KB
/
linkedList.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
class Node {
constructor(value, next = null) {
this.value = value;
this.next = next;
}
}
class LinkedList {
constructor() {
this.head = null;
this.tail = null;
}
insert(value) {
const n = new Node(value);
if (this.head === null) {
this.head = n;
this.tail = n;
return this;
}
this.tail.next = n;
this.tail = n;
return this;
}
prepend(value) {
const n = new Node(value, this.head);
this.head = n;
if (this.tail === null) {
this.tail = n;
}
return this;
}
remove(value) {
if (this.head === null) return false;
let current = this.head;
if (current.value === value) {
if (this.head === this.tail) {
this.head = null;
this.tail = null;
} else {
this.head = this.head.next;
}
return true;
}
while (current.next !== null && current.next.value !== value) {
current = current.next;
}
if (current.next !== null) {
if (current.next === this.tail) {
this.tail = current;
}
current.next = current.next.next;
return true;
}
return false;
}
includes(value) {
if (this.head === null) return false;
let current = this.head;
while (current) {
if (current.value === value) return true;
current = current.next;
}
return false;
}
traverse(callback) {
let current = this.head;
while (current) {
callback(current);
current = current.next;
}
}
toString() {
let str = "";
this.traverse(node => {
str += node.value;
if (node.next !== null) str += ", ";
});
return str;
}
}
class LinkedListIterator {
constructor(list) {
this.list = list;
this.current = list.head;
}
next() {
if (this.current === null) {
return { done: true };
}
const value = this.current.value;
this.current = this.current.next;
return { value, done: false };
}
}
LinkedList.prototype[Symbol.iterator] = function() {
return new LinkedListIterator(this);
};
module.exports = LinkedList;