-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdoubleLinkedList.ts
74 lines (65 loc) · 1.41 KB
/
doubleLinkedList.ts
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
class LinkedNode {
value: number
next: LinkedNode
previous: LinkedNode
constructor(value: number, next: LinkedNode = null, previous: LinkedNode = null) {
this.value = value
this.next = next
this.previous = previous
}
}
/**
* DoubleLinkedList
* head / tail
* append
* prepend
* deleteFirst
* deleteLast
* find
* display
* reverse
**/
export default class DoubleLinkedList {
head: LinkedNode | null
tail: LinkedNode | null
constructor() {
this.head = null
this.tail = null
}
append(value: number) {
let newNode = new LinkedNode(value, null)
if (!this.head) {
this.head = newNode
this.tail = newNode
}
this.tail.next = newNode
newNode.previous = this.tail
this.tail = newNode
return this
}
prepend(value: number) {
let newNode = new LinkedNode(value, this.head)
if (this.head) {
this.head.previous = newNode
}
this.head = newNode
if (!this.tail) {
this.tail = newNode
}
}
deleteFirst(): number {
return
}
deleteLast(): number {
return
}
find(value: number): boolean {
let curr = this.head
while (curr) {
if (curr.value === value) {
return true
}
curr = curr.next
}
}
}