-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.js
152 lines (117 loc) · 2.29 KB
/
list.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
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
class Node {
constructor(value, next = null) {
this.value = value
this.next = next
}
}
class LinkedList {
constructor() {
this.head = null
this.tail = null
this.len = 0
}
append(value) {
const node = new Node(value)
if (this.tail) {
this.tail.next = node
}
if (!this.head) {
this.head = node
}
this.tail = node
this.len++
}
prepend(value) {
const node = new Node(value, this.head)
this.head = node
if (!this.tail) {
this.tail = node
}
this.len++
}
#throwIf = (condition, message) => {
if (condition) {
throw new Error(message)
}
};
find(fn) {
this.#throwIf(!this.head, 'Head is empty')
for (const node of this) {
if (fn(node.value)) {
return node
}
}
return -1
}
filter(fn) {
this.#throwIf(!this.head, 'Head is empty')
const list = new LinkedList()
for (const node of this) {
if (fn(node.value)) {
list.append(node.value)
}
}
return list
}
map(fn) {
this.#throwIf(!this.head, 'Head is empty')
const list = new LinkedList()
for (const node of this) {
list.append(fn(node.value))
}
return list
}
insertAfter(prev, value) {
const found = this.find(e => e === prev)
this.#throwIf(found < 0, `No data found named ${prev}`)
const node = new Node(value, found.next)
if (!found) return
let tmp = found
if (!tmp.next) {
this.tail = node
} else {
tmp.next = node
}
this.len++
}
forEach(fn) {
for (const node of this) {
fn(node)
}
}
toArray() {
return [...this]
}
* iterator() {
let current = this.head;
while (current) {
yield current
current = current.next
}
}
[Symbol.iterator]() {
return this.iterator()
}
get length() {
return this.len
}
remove(value) {
if (!this.head) {
return
}
while (this.head && this.head.value === value) {
this.head = this.head.next
}
let current = this.head
while (current.next) {
if (current.next.value === value) {
current.next = current.next.next
} else {
current = current.next
}
}
if (this.tail.value === value) {
this.tail = current
}
}
}