-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLinkedList.js
More file actions
181 lines (162 loc) · 4.02 KB
/
LinkedList.js
File metadata and controls
181 lines (162 loc) · 4.02 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
import LinkedListNode from './LinkedListNode'
import Comparator from '../../utils/Comparator'
export default class LinkedList {
/**
*@param {Function} [comparatorFunction]
*/
constructor(comparatorFunction) {
/** @var LinkedListNode */
this.head = null
/** @var LinkedListNode */
this.tail = null
this.compare = new Comparator(comparatorFunction)
}
//在头部插入一个节点
prepend(value) {
//构造一个新节点当做头部节点
const newNode = new LinkedListNode(value, this.head)
this.head = newNode
//如果还没有尾部节点,让刚才创建的新节点作为尾部节点
if (!this.tail) {
this.tail = newNode
}
return this
}
/**
*在尾部插入一个节点
*@param {*} value
*@return {LinkedList}
*/
append(value) {
const newNode = new LinkedListNode(value)
//如果没有头部节点,让刚才创建的新节点作为头部节点
if (!this.head) {
this.head = newNode
this.tail = newNode
return this
}
//将新节点作为尾部节点
this.tail.next = newNode
this.tail = newNode
return this
}
/**
*删除某个节点
*@param {*} value
*@return {LinkedListNode}
*/
delete(value) {
if (!this.head) {
return null
}
let deleteNode = null
//如果删除的是头部节点,那么使下一个节点作为头部节点
while (this.head && this.compare.equal(this.head.value, value)) {
deleteNode = this.head
this.head = this.head.next
}
let currentNode = this.head
if (currentNode !== null) {
while (currentNode.next) {
//如果下一个节点将被删除,那么使下一个节点的下一下节点代替该节点
if (this.compare.equal(currentNode.next.value, value)) {
deleteNode = currentNode.next
currentNode.next = currentNode.next.next
} else {
currentNode = currentNode.next
}
}
}
//如果删除的是最后一个节点,更新this.tail
if (this.compare.equal(this.tail.value, value)) {
this.tail = currentNode
}
return deleteNode
}
/**
* 查找节点
* @param {Object} findParams
* @param {*} findParams.value
* @param {function} [findParams.callback]
* @return {LinkedListNode}
*/
find({ value = undefined, callback = undefined }) {
if (!this.head) {
return null
}
let currentNode = this.head
while (currentNode) {
//如果有回调函数,使用回调函数去查找节点
if (callback && callback(currentNode.value)) {
return currentNode
}
if (value !== undefined && this.compare.equal(currentNode.value, value)) {
return currentNode
}
currentNode = currentNode.next
}
return null
}
/**
* 删除尾部节点
* @return {LinkedListNode}
*/
deleteTail() {
if (this.head === this.tail) {
const deletedTail = this.tail
this.head = null
this.tail = null
return deletedTail
}
const deletedTail = this.tail
let currentNode = this.head
while (currentNode.next) {
if (!currentNode.next.next) {
currentNode.next = null
} else {
currentNode = currentNode.next
}
}
this.tail = currentNode
return deletedTail
}
/**
* 删除头部节点
* @return {LinkedListNode}
*/
deleteHead() {
if (!this.head) {
return null
}
const deletedHead = this.head
if (this.head.next) {
this.head = this.head.next
} else {
this.head = null
this.tail = null
}
return deletedHead
}
/**
* 转换为数组
* @return {LinkedListNode[]}
*/
toArray() {
const nodes = []
let currentNode = this.head
while (currentNode) {
nodes.push(currentNode)
currentNode = currentNode.next
}
return nodes
}
/**
* @param {function} [callback]
* @return {string}
*/
toString(callback) {
return this.toArray()
.map(node => node.toString(callback))
.toString()
}
}