-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathll-zip.js
75 lines (67 loc) · 1.37 KB
/
ll-zip.js
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
'use strict';
class Node {
constructor(value) {
this.value = value;
this.next = null;
}
}
class LinkedList {
constructor() {
this.head = null;
}
toString() {
let current = this.head;
let string = '';
while (current) {
const banana = current.value;
current = current.next;
string += `{ ${banana} } -> `;
}
string += '{NULL}';
// console.log(string);
return string;
}
append(value) {
let current = this.head;
while (current) {
if (current.next === null) {
current.next = new Node(value);
return;
}
current = current.next;
}
}
}
function zipLists(listOne, listTwo) {
const newll = new LinkedList();
listOne = listOne.head;
listTwo = listTwo.head;
newll.head = new Node(listOne.value);
listOne = listOne.next;
while (listOne || listTwo) {
if (listOne && listTwo) {
newll.append(listTwo.value);
newll.append(listOne.value);
listTwo = listTwo.next;
listOne = listOne.next;
}
else if (!listOne && listTwo) {
newll.append(listTwo.value);
listTwo = listTwo.next;
}
else if (listOne && !listTwo) {
newll.append(listOne.value);
listOne = listOne.next;
}
else {
return;
}
}
newll.toString();
return newll;
}
module.exports = {
ll: LinkedList,
node: Node,
zip: zipLists,
};