-
-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathfindKthNodeFromEnd.js
52 lines (46 loc) · 1.13 KB
/
findKthNodeFromEnd.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
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;
}
findKthNodeFromEnd(k) {
let first = this.head;
let second = this.head;
for (let i = 0; i < k; i++) {
if (first === null) return null;
first = first.next;
}
while(first != null) {
second = second.next;
first = first.next;
}
return second;
}
}
const myLinkedList = new LinkedList();
myLinkedList.push(1);
myLinkedList.push(2);
myLinkedList.push(3);
myLinkedList.push(4);
myLinkedList.push(5);
console.dir(myLinkedList.findKthNodeFromEnd(2),{depth: null});
console.dir(myLinkedList.findKthNodeFromEnd(5),{depth: null});