-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLinkedList.js
More file actions
141 lines (124 loc) · 2.69 KB
/
LinkedList.js
File metadata and controls
141 lines (124 loc) · 2.69 KB
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
import { Node } from './Node.js'
export class LinkedList {
constructor () {
this.listSize = 0
this.listHead = null
}
append (value) {
if (this.listHead === null) {
this.listHead = new Node(value)
} else {
const listTail = this.tail()
listTail.next = new Node(value)
}
this.listSize++
}
prepend (value) {
this.listHead = new Node(value, this.head())
this.listSize++
}
size () {
return this.listSize
}
head () {
return this.listHead
}
tail () {
let temp = this.head()
if (temp === null) {
return null
}
while (temp.next !== null) temp = temp.next
return temp
}
at (index) {
if (index >= this.size()) {
console.log(`invalid value. Max Value: ${this.size() - 1}`)
return null
}
if (index === 0) return this.head()
let temp = this.head()
for (let i = 0; i < index; i++) {
temp = temp.next
}
return temp
}
pop () {
if (this.size() === 0) {
console.log('Invalid Method, list is empty')
return
}
if (this.size() === 1) {
this.listHead = null
} else {
const temp = this.at(this.size() - 2)
temp.next = null
}
this.listSize--
}
contains (value) {
if (this.size() === 0) {
console.log('Empty List')
return false
}
let temp = this.head()
while (temp !== null) {
if (temp.value === value) return true
temp = temp.next
}
return false
}
find (value) {
let temp = this.head()
let index = 0
while (temp !== null) {
if (value === temp.value) {
return index
}
temp = temp.next
index++
}
return null
}
toString () {
if (this.size() === 0) return 'null'
let temp = this.head()
let value = `(${temp.value})`
while (temp.next !== null) {
temp = temp.next
value = value.concat(` -> (${temp.value})`)
}
return value.concat(' -> null')
}
insertAt (value, index) {
if (index < 0 || index > this.size()) {
console.log('Index out of bounds')
return
}
if (index === 0) {
this.prepend(value)
return
}
const node = this.at(index - 1)
const newNode = new Node(value, node.next)
node.next = newNode
this.listSize++
}
removeAt (index) {
if (index < 0 || index >= this.size()) {
console.log('Index out of bounds')
return
}
const nodeToDel = this.at(index)
if (nodeToDel === this.head()) {
const head = this.head()
const newNode = head.next
this.listHead = newNode
this.listSize--
return
}
const preNode = this.at(index - 1)
preNode.next = nodeToDel.next
this.listSize--
}
}