-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1_reverse_linked_list.js
More file actions
52 lines (42 loc) · 914 Bytes
/
1_reverse_linked_list.js
File metadata and controls
52 lines (42 loc) · 914 Bytes
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
function reverseLinkedList(linkedList) {
let prev = null;
let curr = linkedList.tail = linkedList.head;
while (curr) {
const next = curr.next
curr.next = prev;
prev = curr;
curr = next;
}
linkedList.head = prev;
return linkedList;
}
// ----------------------------------------
// Given: Singly Linked List - Do Not Edit!
// ----------------------------------------
class Node {
constructor(val) {
this.value = val;
this.next = null;
}
}
class LinkedList {
constructor() {
this.head = null;
this.tail = null;
this.length = 0;
}
addToTail(val) {
const newNode = new Node(val);
if (!this.head) {
this.head = newNode;
} else {
this.tail.next = newNode;
}
this.tail = newNode;
this.length++;
return this;
}
}
exports.Node = Node;
exports.LinkedList = LinkedList;
exports.reverseLinkedList = reverseLinkedList;