forked from super30admin/PreCourse-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExercise_3.js
More file actions
58 lines (51 loc) · 1.16 KB
/
Copy pathExercise_3.js
File metadata and controls
58 lines (51 loc) · 1.16 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
// a Singly Linked List
class LinkedList {
constructor() {
this.startPos = null;
}
// Linked list Node.
static Node = class {
constructor(d) {
this.data = d;
this.next = null;
}
};
// Method to insert a new node
insert(list, data) {
let newNode = new LinkedList.Node(data);
if (list.startPos === null) {
list.startPos = newNode;
} else {
let lastPos = list.startPos;
while (lastPos.next !== null) {
lastPos = lastPos.next;
}
lastPos.next = newNode;
}
return list;
}
// Method to print the LinkedList.
printList(list) {
let currNode = list.startPos;
let output = "";
while (currNode !== null) {
output += currNode.data + " ";
currNode = currNode.next;
}
console.log(output.trim());
// Traverse through the LinkedList
// Print the data at current node
// Go to next node
}
}
// Driver code
/* Start with the empty list. */
let list = new LinkedList();
// ******INSERTION******
// Insert the values
list.insert(list, 1);
list.insert(list, 2);
list.insert(list, 3);
list.insert(list, 4);
// Print the LinkedList
list.printList(list);