-
-
Notifications
You must be signed in to change notification settings - Fork 223
Expand file tree
/
Copy pathpartitionList.js
More file actions
81 lines (71 loc) · 1.63 KB
/
partitionList.js
File metadata and controls
81 lines (71 loc) · 1.63 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
class Node {
constructor(value) {
this.value = value;
this.next = null;
}
}
class LinkedList {
constructor(value) {
this.head = null;
this.tail = null;
this.length = 0;
}
push(value) {
const newNode = new Node(value);
if (!this.head) {
this.head = newNode;
this.tail = newNode;
} else {
this.tail.next = newNode;
this.tail = newNode;
}
this.length++;
return this;
}
partitionList(x) {
if (!this.head) return;
let leftDummy = new Node(0);
let rightDummy = new Node(0);
let leftTail = leftDummy;
let rightTail = rightDummy;
let current = this.head;
while (current !== null) {
if (current.value < x) {
leftTail.next = current;
leftTail = current;
} else {
rightTail.next = current;
rightTail = current;
}
current = current.next;
}
leftTail.next = rightDummy.next;
rightTail.next = null;
this.head = leftDummy.next;
}
printList() {
let current = this.head;
let output = '';
while(current !== null) {
output += ''+ current.value;
current = current.next;
if (current !== null) output += ' --> ';
}
console.log(output);
}
}
const myLinkedList1 = new LinkedList();
myLinkedList1.push(7);
myLinkedList1.push(3);
myLinkedList1.push(6);
myLinkedList1.push(3);
myLinkedList1.push(5);
myLinkedList1.push(4);
myLinkedList1.push(8);
myLinkedList1.partitionList(5);
myLinkedList1.printList();
const myLinkedList2 = new LinkedList();
myLinkedList2.push(3);
myLinkedList2.push(2);
myLinkedList2.partitionList(3);
myLinkedList2.printList();