-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathduplicate-linked-list.js
More file actions
64 lines (44 loc) · 1.01 KB
/
Copy pathduplicate-linked-list.js
File metadata and controls
64 lines (44 loc) · 1.01 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
const arr = [3,5,8, 5,10, 2, 1];
function NodeV(value, next) {
this.value = value || null;
this.next = next || null;
// return this;
}
function createList(arr) {
var nodes = null;
var temp = null;
for (let x of arr) {
if (nodes === null) {
nodes = new NodeV(x);
temp = nodes; //1
}
else {
temp.next = new NodeV(x);
temp = temp.next;
}
}
return nodes;
}
function partitionAround(node, partition){
var ls = new NodeV(),
le = ls,
gs = new NodeV(),
ge = gs;
while(node !== null){
if(node.value < partition){
le.next = node;
le = le.next;
}
else if(node.value >= partition){
ge.next = node;
ge = ge.next;
}
node = node.next;
}
ge.next = null;
le.next = gs.next;
ls = ls.next
}
var node = createList(arr);
partitionAround(node, 5)
console.log(node.next.next.next.next);