-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlinkedList.js
129 lines (105 loc) · 3.22 KB
/
linkedList.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
//Make a linkedlist
//makes a node
class Node {
constructor(data) {
this.data = data;
this.next = null;
}
}
//makes a linked list container
class LinkedList {
constructor() {
this.head = null;
this.length = 0;
}
push(data) {
const nodeToAdd = new Node(data);
let nodeToCheck = this.head;
//check to see if there are no nodes
if (!nodeToCheck) {
this.head = nodeToAdd;
this.length++;
return "Linked list does not exist. Node added as first node.";
}
while (nodeToCheck.next) {
nodeToCheck = nodeToCheck.next;
}
nodeToCheck.next = nodeToAdd;
this.length++;
return nodeToAdd;
}
get(val) {
let nodeToCheck = this.head;
let count = 0;
while (count < this.length) {
if (nodeToCheck.data == val) {
return nodeToCheck;
}
nodeToCheck = nodeToCheck.next;
count++;
};
return "Node does not exist";
}
delete(val) {
let currentNode = this.head;
//check to see if there are any nodes
if (!currentNode) {
return "There are no nodes.";
}
//head is the value to delete
if (currentNode.data == val) {
//head has another node after it:
if (currentNode.next) {
this.head = currentNode.next;
this.length--;
return "Head Node deleted" + currentNode;
} else {
//head is the only node:
this.head = null;
this.length--;
return "Only Node deleted" + currentNode;
}
}
//Node is in the middle of the list.
let previousNode = currentNode;
while (currentNode.next) {
if (currentNode.data == val) {
previousNode.next = currentNode.next;
this.length--;
return "Node deleted." + currentNode
}
previousNode = currentNode;
currentNode = currentNode.next;
}
//if node note not found by now - we are on the last node
if (currentNode.data == val) {
previousNode.next = null;
this.length--;
return "Last Node deleted." + currentNode;
} else {
return "Node does not exist.";
}
}
//removes nth node from the end of a linked list. Takes in a head node, and returns the head node again.
removeNthFromEnd = (head, n) => {
if (head.next == null) {
return null;
}
let dummy = new ListNode(0);
dummy.next = head;
let first = dummy;
let second = dummy;
// Advances first pointer so that the gap between first and second is n nodes apart
for (let i = 1; i <= n + 1; i++) {
first = first.next;
}
// Move first to the end, maintaining the gap
while (first != null) {
first = first.next;
second = second.next;
}
second.next = second.next.next;
return dummy.next;
}
}
let linkedList = new LinkedList();