-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
140 lines (115 loc) · 3.02 KB
/
index.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
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
class LinkedNode<T> {
private _data: T | null = null
private _pointer: LinkedNode<T> | null = null
constructor(data: T, pointer?: LinkedNode<T>) {
this._data = data
this._pointer = pointer ?? null
}
get data(): T | null {
return this._data
}
set data(newData: T) {
this._data = newData
}
get pointer(): LinkedNode<T> | null {
return this._pointer
}
set pointer(newPointer: LinkedNode<T> | null) {
this._pointer = newPointer
}
}
/**
* Linked list data structure that consists of nodes where each node
* contains a data field and a pointer field.
*/
class LinkedList<T> {
private _head: LinkedNode<T> | null = null
private _size: number = 0
/**
* Returns the first element in the linked list.
* @returns {T | null} - The first element in the linked list.
*/
get head(): T | null {
return this._head?.data ?? null
}
/**
* Returns the number of elements in the linked list.
* @returns {number} - The number of elements in the linked list.
*/
get size(): number {
return this._size
}
/**
* Returns the last element in the linked list.
* @returns {T | null} - The last element in the linked list.
*/
get tail(): T | null {
const getTail = (currNode: LinkedNode<T> | null) => {
if (currNode?.pointer) return getTail(currNode.pointer)
return currNode?.data
}
return getTail(this._head) ?? null
}
/**
* Adds a node to the end of the linked list.
* @param {T} data - The data to add to the end of the linked list.
*/
public addToTail = (data: T): void => {
const addedNode = new LinkedNode<T>(data)
if (this._head === null) {
this._head = addedNode
this._size++
return
}
let currentNode = this._head
while (currentNode.pointer) {
currentNode = currentNode.pointer
}
currentNode.pointer = addedNode
this._size++
}
/**
* Adds a node to the beginning of the linked list.
* @param {T} data - The data to add to the beginning of the linked list.
*/
public addToHead = (data: T): void => {
const addedNode = new LinkedNode<T>(data)
if (this._head === null) {
this._head = addedNode
this._size++
return
}
addedNode.pointer = this._head
this._head = addedNode
this._size++
}
/**
* Deletes a node from the linked list.
* @param {T} data - The data to delete from the linked list.
*/
public deleteNode = (data: T): void => {
if (this._head === null) return
if (this._head.data === data) {
this._head = this._head.pointer
this._size--
return
}
let currentNode = this._head
while (currentNode.pointer) {
if (JSON.stringify(currentNode.pointer.data) === JSON.stringify(data)) {
currentNode.pointer = currentNode.pointer.pointer
this._size--
return
}
currentNode = currentNode.pointer
}
}
/**
* Clears the linked list.
*/
public clear = (): void => {
this._head = null
this._size = 0
}
}
export default LinkedList